[C언어]socoban소코반(푸시푸시) 게임
#include #include "turboc.h" #define UP 72 #define DOWN 80 #define LEFT 75 #define RIGHT 77 #define STAGE 3 void MapDrow(); void KeyDown(); int Cheracter(); int nx, ny; int ston; int n_stage; char chMap[STAGE][10][15] = { { "###############", "#STAGE 1 ######", "###############", "##### #########", "##### #########", "##### #O#O####", "#####! @@ @ O##", "###### ####", "###############", "#######..
더보기