출처 : KGCA 게임 아카데미(http://www.kgcaschool.com/). 수업 예제 파일. omok.h #include // gotoxy(), SetConsoleCursorPosition() #include #include #include //kbhit(), _getch() #define RIGHT77 #define LEFT75 #define UP72 #define DOWN80 #define ENTER13 #define WHITEWIN2 #define BLACKWIN3 //함수 포인터 선언 void(*game) (); enum STATE { GAME_INIT = 0, KEY_CHECK, GAME_DRAW, GAME_CHECK }; voidkeyCheck(); voidgotoxy(int x, i..