From 0db41de73fb65bdbe2e412f79704cff1874c7312 Mon Sep 17 00:00:00 2001 From: Luis Ferro Date: Mon, 11 Nov 2019 20:02:55 +0100 Subject: Add char generation and positioning in first room of the dungeon --- src/main.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/main.rs') 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(); -- cgit v1.2.3