[C#] SnakeS

A Snake game that can be easily implemented on any C# .Net application Installation : Add the Block.cs, Blocks.cs, Settings.cs and Game.cs to your project. Initialize the game by creating an instance of Game class : Game game = new Game ( BlocksNumberOnX, BlocksNumberOnY, RefreshRateInMs, DisplayController ); BlocksNumberOnX = Number of blocks on X axis BlocksNumberOnY = Number of blocks on Y axis RefreshRateInMs …

[C#] SnakeS Read More »