헤더 위치 잘 맞추고 하면 실행되는 스네이크 게임.넘나 심플한 것. #include #include #include #include #include #include #define SIZE 0.05#define VELOCITY 0.1#define RIGHT 1#define LEFT 2#define UP 3#define DOWN 4#define BESIDE_ROTATION 5#define INNER_SIZE 0.04#define COLOR 1.0, 1.0, 1.0 GLfloat DeltaX = 0.0;GLfloat DeltaY = 0.0;GLfloat NewDeltaX = 0.5;GLfloat NewDeltaY = 0.0;GLint ArrowKeyValue = GLUT_KEY_RIGHT;GLfloat Ver..