mindustry logic execution, map- and schematic- parsing and rendering
1
2
3
4
5
6
7
use crate::content::numeric_enum;

numeric_enum! {
    pub enum UnitCommand for u8 | TryFromU8Error {
        Move, Repair, Rebuild, Assist, Mine, Boost,
    }
}