1
0
Fork 0
This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
Global-Game-Jam-2019/Assets/Scripts/Direction.cs
2019-01-27 14:54:55 +01:00

5 lines
143 B
C#

using System;
public enum Direction
{
UP = 0, DOWN = 1, LEFT = 3, RIGHT = 4, UP_LEFT = 5, UP_RIGHT = 6, DOWN_LEFT = 7, DOWN_RIGHT = 8
}