using System; using System.Collections.Generic; using System.Text; namespace Snake { public enum CrashType { None, Self, Wall, Food, } }