Unnamed repository; edit this file 'description' to name the repository.
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,
    }
}