You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

8 lines
132 B

#include "controller.h"
int main()//程序入口
{
Controller c;//声明一个Controller类
c.Game();//整个游戏循环
return 0;
}