摘要: using System;using System.Collections.Generic;using System.Text;namespace 骑士飞行棋{ /// <summary> /// 骑士飞行棋游戏,学习传智播客的视频教程后用类改写的代码 /// </summary> class Program { static voidMain(string[] args) { Game game = new Game(); game.Start(); } }}using System;using System.Collections.Gene... 阅读全文
posted @ 2012-02-19 16:16 悍马 阅读(395) 评论(0) 推荐(0)