rust/mapgen/src/lib.rs
changeset 14151 3c8a33ba06ba
parent 14137 3119d665d3c6
child 14156 74ca70cb753d
--- a/rust/mapgen/src/lib.rs	Wed Nov 07 00:02:48 2018 +0300
+++ b/rust/mapgen/src/lib.rs	Wed Nov 07 03:35:56 2018 +0300
@@ -1,3 +1,5 @@
+pub mod theme;
+
 use std::{
     collections::hash_map::HashMap,
     borrow::Borrow,
@@ -11,6 +13,8 @@
     outline_template::OutlineTemplate
 };
 use rand::{thread_rng, Rng};
+use land2d::Land2D;
+use theme::Theme;
 
 #[derive(Deserialize)]
 struct PointDesc {
@@ -101,6 +105,10 @@
     pub fn get_template(&self, template_type: &str) -> Option<&OutlineTemplate> {
         self.templates.get(template_type).and_then(|t| thread_rng().choose(t))
     }
+
+    pub fn make_texture(&self, land: &Land2D<u32>, theme: &Theme) {
+
+    }
 }
 
 #[cfg(test)]