12 lines
179 B
C#
12 lines
179 B
C#
|
|
namespace 贪吃蛇
|
||
|
|
{
|
||
|
|
class Program
|
||
|
|
{
|
||
|
|
static void Main(string[] args)
|
||
|
|
{
|
||
|
|
Game game = new Game();
|
||
|
|
game.Start();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|