aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorGuillaume <g@bitimplosion.com>2019-11-12 09:50:07 +0100
committerGitHub <noreply@github.com>2019-11-12 09:50:07 +0100
commit3794736d4bd1149247b8c4d39dc946466b550463 (patch)
tree9735bd620d04ee24668c3e933ff9436f55658b82 /src/main.rs
parent5f6768b6a7c954d47ef97809f688df83664e85bc (diff)
parent5216caa5e64b8be05ff859ba85f90f7a8fa1e6c1 (diff)
Merge pull request #1 from lferro9000/character_generation
Add char generation and positioning in first room of the dungeon
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs14
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();