vb制作赛车游戏的代码怎么写呀?网上的什么drawcar,drawway根本看不懂。。。有木有大神教一下啦
最简单的你就画一个车,然后地图往下移动就跑起来了,然后按键的时候车左右移动。
本回答由提问者推荐
如何用scratch2.0编写赛车游戏
ConsoleKeyInfo ki = Console.ReadKey(true);char InputChar;string AllowChar = "0123456789";InputChar = ki.KeyChar;//输入 q 退出while (InputChar != q){if (AllowChar.IndexOf(InputChar) >= 0){Console.Write(InputChar);}ki = Console.ReadKey(true);InputChar = ki.KeyChar;}Console.WriteLine("\n game is over");Console.ReadLine();c# 4.0VS 2013 调试通过。