Enum Direction
- Namespace
- Whim
- Assembly
- Whim.dll
A direction in the coordinate space.
[Flags]
public enum Direction
- Extension Methods
Fields
Down = 8- The down direction.
Left = 1- The left direction.
LeftDown = Left | Down- The left + down direction.
LeftUp = Left | Up- The left + up direction.
None = 0- No direction.
Right = 2- The right direction.
RightDown = Right | Down- The right + down direction.
RightUp = Right | Up- The right + up direction.
Up = 4- The up direction.