diff options
author | Luis Ferro <luis.ferro@eggplant.io> | 2019-11-11 20:02:55 +0100 |
---|---|---|
committer | Luis Ferro <luis.ferro@eggplant.io> | 2019-11-11 20:02:55 +0100 |
commit | 0db41de73fb65bdbe2e412f79704cff1874c7312 (patch) | |
tree | 083059e57ef9fd6e7c39d37009f9388385f6f232 /src/main.rs | |
parent | 5f6768b6a7c954d47ef97809f688df83664e85bc (diff) |
Add char generation and positioning in first room of the dungeon
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 7da68ed..523ef13 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,6 +9,7 @@ mod computer; mod world; use character::Player; +use character::Character; use computer::Enemy; use pancurses::{Window, initscr, endwin}; use rand::Rng; @@ -57,6 +58,19 @@ fn main() { let mut world = World::new(80, 24); world.generate(); + let start_location = world.get_start_location(); + + let mut character: Character = Character::new( + "Kshar".to_string(), + "Warror".to_string(), + 30, + 10, + 10, + 20, + start_location + ); + character.place(start_location); + debug_world(&world); // let window = initscr(); |