mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/data/command.rs')
-rw-r--r--src/data/command.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/data/command.rs b/src/data/command.rs
index ba146ff..7d5298c 100644
--- a/src/data/command.rs
+++ b/src/data/command.rs
@@ -1,8 +1,7 @@
use crate::content::numeric_enum;
numeric_enum! {
- pub enum UnitCommand for u8 | TryFromU8Error
- {
- Attack, Rally, Idle
+ pub enum UnitCommand for u8 | TryFromU8Error {
+ Move, Repair, Rebuild, Assist, Mine, Boost,
}
}