14 lines
159 B
C++
Executable File
14 lines
159 B
C++
Executable File
#ifndef COMMON_HPP
|
|
#define COMMON_HPP
|
|
|
|
enum PlayerDirection
|
|
{
|
|
kNone = 0,
|
|
kLeft = 1,
|
|
kUp = 2,
|
|
kDown = 3,
|
|
kRight = 4
|
|
};
|
|
|
|
#endif
|