摘要: 简单记录下贪吃蛇小游戏。 以下是源码: 1 #include <curses.h> 2 #include <stdlib.h> 3 #include <pthread.h> 4 #define UP 1 5 #define DOWN -1 6 #define LEFT 2 7 #define RIG 阅读全文
posted @ 2023-06-28 15:55 熊来闯一闯 阅读(190) 评论(0) 推荐(0) 编辑