検索結果 1 件
- 4年前
- フォーラム: C言語何でも質問掲示板
- トピック: ゲーム制作において
- 返信数: 2
- 閲覧数: 2619
Re: ゲーム制作において
//#pragma warning(disable:4996) #include <stdio.h> #include <stdlib.h> // system() #include <windows.h> // Sleep() #include <time.h> // time() #define SIZE_X 14 #define SIZE_Y 21 #define WALL 1 #define BLOCK 4 int main() { int c = 0; int wait_time = 600; int x, y; int bx, by; //ブロックの座標 int r; int t...