summaryrefslogtreecommitdiff
path: root/src/constants.rs
diff options
context:
space:
mode:
authorTom Barrett <tombarrett@siu.edu>2017-11-02 08:36:26 -0500
committerTom Barrett <tombarrett@siu.edu>2017-11-02 08:36:26 -0500
commit1c3ec15a9a8b7cef3c544af225d028b3de13d75e (patch)
tree33eb2512060caf7296849ce99dcb0bb920c94aee /src/constants.rs
parent2e5f1363e6efff3daefee9fe6388be2332e6fb62 (diff)
- added color constants, fixed some syntax, and changed method of
getting potential locations
Diffstat (limited to 'src/constants.rs')
-rw-r--r--src/constants.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/constants.rs b/src/constants.rs
new file mode 100644
index 0000000..7219cd4
--- /dev/null
+++ b/src/constants.rs
@@ -0,0 +1,8 @@
+#[allow(dead_code)]
+pub enum Colors {
+ None,
+ Grass,
+ Tree,
+ White,
+ BlueUnit,
+}