no all caps for enum variants

This commit is contained in:
2016-10-10 19:08:21 -07:00
parent f795c73ed8
commit 381157c8e2
5 changed files with 21 additions and 21 deletions

View File

@@ -6,10 +6,10 @@ use tile::Tile;
#[allow(dead_code)]
#[derive(Clone, Copy, Debug)]
enum Behavior {
FIXED = 0x00,
WANDER = 0x01,
FOLLOW = 0x80,
ATTACK = 0xFF,
Fixed = 0x00,
Wander = 0x01,
Follow = 0x80,
Attack = 0xFF,
}
#[derive(Clone, Copy)]