mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/data/command.rs')
| -rw-r--r-- | src/data/command.rs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/data/command.rs b/src/data/command.rs index 66d9822..ba146ff 100644 --- a/src/data/command.rs +++ b/src/data/command.rs @@ -1,9 +1,8 @@ use crate::content::numeric_enum; -numeric_enum! -{ - pub enum UnitCommand for u8 | TryFromU8Error - { - Attack, Rally, Idle - } +numeric_enum! { + pub enum UnitCommand for u8 | TryFromU8Error + { + Attack, Rally, Idle + } } |