snakeplusplus/src/common.hpp

17 lines
242 B
C++
Raw Normal View History

#ifndef COMMON_HPP
#define COMMON_HPP
void InitializeGenerator(void);
int GenerateRandomNumber(int generationLimit);
2023-08-18 19:09:57 -05:00
enum PlayerDirection
{
kNone = 0,
kLeft = 1,
kUp = 2,
kDown = 3,
kRight = 4
};
#endif