snakeplusplus/include/common.h

13 lines
139 B
C
Raw Normal View History

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