snakeplusplus/include/common.hpp

14 lines
159 B
C++
Raw Normal View History

#ifndef COMMON_HPP
#define COMMON_HPP
enum PlayerDirection
{
kNone = 0,
kLeft = 1,
kUp = 2,
kDown = 3,
kRight = 4
};
#endif