diff options
author | tom barrett <spalf0@gmail.com> | 2019-08-27 10:13:51 -0500 |
---|---|---|
committer | tom barrett <spalf0@gmail.com> | 2019-08-27 10:13:51 -0500 |
commit | 6d78a950473a4f34df6bae98d2bf2c99632afe4a (patch) | |
tree | f1a9f45550cacd8de0862107b667409579ca9486 /src/constants.rs | |
parent | 0f85752b1657e7b8024fb2715578712295979b3a (diff) |
can cycle and select responses and go through the tree
Diffstat (limited to 'src/constants.rs')
-rw-r--r-- | src/constants.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/constants.rs b/src/constants.rs index 041d210..b7f01d5 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -16,3 +16,5 @@ pub const FLIP_A: usize = FLIP_D | FLIP_H | FLIP_V; use ggez::graphics::Color; pub const PURPLE: Color = Color::new(0.4, 0.0, 0.2, 1.0); +pub const GOLD: Color = Color::new(1.0, 0.872, 0.376, 1.0); +pub const WHITE: Color = Color::new(1.0, 1.0, 1.0, 1.0); |