Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
use crate::content::numeric_enum;

numeric_enum!
{
	pub enum UnitCommand for u8 | TryFromU8Error
	{
		Attack, Rally, Idle
	}
}