summaryrefslogtreecommitdiff
path: root/src/engine/mod.rs
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2018-06-30 22:45:05 +0200
committerJustin Worthe <justin@worthe-it.co.za>2018-06-30 22:45:05 +0200
commit11a7896e40da2315df9e46c8b03afb3d6eec94dc (patch)
treeab0df5250c064cc91548ee90b5be8de54a8b7656 /src/engine/mod.rs
parent11457a738e63b5aaae55779fbfdc4978e6524bb1 (diff)
Created data structure for bitwise game engine
Diffstat (limited to 'src/engine/mod.rs')
-rw-r--r--src/engine/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/mod.rs b/src/engine/mod.rs
index 2910b75..6e7c5c9 100644
--- a/src/engine/mod.rs
+++ b/src/engine/mod.rs
@@ -2,7 +2,7 @@ pub mod command;
pub mod geometry;
pub mod settings;
pub mod expressive_engine;
-
+pub mod bitwise_engine;
use self::command::{Command};
use self::geometry::Point;
@@ -27,7 +27,7 @@ pub enum GameStatus {
Draw
}
-#[derive(Debug, Clone, PartialEq)]
+#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Player {
pub energy: u16,
pub health: u8,