Skip to content

Instantly share code, notes, and snippets.

@M2vH
M2vH / Snake.cs
Created December 5, 2019 12:43 — forked from JerryNixon/Snake.cs
The simple Snake game in C# for the Windows Console
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Threading;
namespace Snake
{
public enum Direction { Stop, Up, Down, Left, Right }