diff options
Diffstat (limited to 'src/entities.rs')
-rw-r--r-- | src/entities.rs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/entities.rs b/src/entities.rs index 2d3078c..a01d86a 100644 --- a/src/entities.rs +++ b/src/entities.rs @@ -1,5 +1,6 @@ use std::cmp;
+use pancurses::{Window};
use crate::world::{Point};
use crate::tiling::TileType;
@@ -23,6 +24,10 @@ pub struct Character { tile_type: TileType
}
+pub trait Render {
+ fn render(&self, window: &Window);
+}
+
pub trait Enemy {
fn new(
class: String,
@@ -54,6 +59,23 @@ pub trait Player { fn stats(&self) -> String;
}
+impl Render for Character {
+ fn render(&self, window: &Window) {
+ // window.mv(window.get_max_y() - 2, 0);
+ // window.clrtoeol();
+
+ // window.refresh();
+
+ // window.addstr(self.character.info() + "\n");
+
+ // window.mv(self.character.location.1 as i32,self.character.location.0 as i32);
+ // window.refresh();
+ // draw_block(&window, self.character.tile_type);
+ // window.refresh();
+
+ }
+}
+
impl Entity for Character {
fn place(&mut self, location: Point) {
self.location = location;
|