feat: entity trait, direction enum (util)

This commit is contained in:
2023-09-08 22:48:59 -05:00
parent 2214a5541f
commit 274404b9ea
2 changed files with 14 additions and 0 deletions

6
src/direction.rs Normal file
View File

@@ -0,0 +1,6 @@
pub enum Direction {
Up,
Down,
Left,
Right,
}