aboutsummaryrefslogtreecommitdiff
path: root/src/world.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.rs')
-rw-r--r--src/world.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/world.rs b/src/world.rs
index f2f3470..23bed8a 100644
--- a/src/world.rs
+++ b/src/world.rs
@@ -1,6 +1,6 @@
use rand::Rng;
-type Point = (usize, usize);
+pub type Point = (usize, usize);
#[derive(Clone)]
pub enum TileType {
@@ -264,6 +264,13 @@ impl Level {
Ok(grid)
}
+ pub fn get_start_point(&self) -> Point {
+ if self.rooms.len() > 0 {
+ return self.rooms[0].center;
+ }
+ return (0,0)
+ }
+
fn overlaps(&self, start: Point, width: usize, height: usize, padding: usize) -> bool {
for room in &self.rooms {
if room.start.0 < start.0 + width + padding &&