贪吃蛇

直接上代码: Model.h #pragma once //坐标的结构体 typedef struct Coordinate { int x; int y; } Coordinate; //链表的节点结构体 typedef struct Node { Coordinate Coord; struct Node* next; } Node; //蛇前进的方向 typedef e
相关文章
相关标签/搜索