mirror of https://github.com/acid-info/WebCave.git
feature: added movement enums
This commit is contained in:
parent
61e20c3f73
commit
13d156caef
|
@ -0,0 +1,14 @@
|
|||
enum EMouseEvent {
|
||||
DOWN = 0,
|
||||
UP = 1,
|
||||
MOVE = 2
|
||||
}
|
||||
|
||||
enum EDirection {
|
||||
UP = 1,
|
||||
DOWN = 2,
|
||||
LEFT = 3,
|
||||
RIGHT = 4,
|
||||
FORWARD = 5,
|
||||
BACK = 6
|
||||
}
|
Loading…
Reference in New Issue