public enum Direction {
None(0), //None
Left(1), //Влево
Up(2), //Вверх
Right(3), //Вправо
Down(4); //Вниз
Direction(int i) {
}