Enum Direction.Types
Enum representing Direction types. Each Direction instance has a Type field which contains the corresponding value from this enum. Useful for easy mapping of Direction types to a primitive type (for cases like a switch statement).
Namespace: SadRogue.Primitives
Assembly: TheSadRogue.Primitives.dll
Syntax
public enum Direction.Types
Fields
| Name | Description |
|---|---|
| Down | Type for Down. |
| DownLeft | Type for DownLeft. |
| DownRight | Type for DownRight. |
| Left | Type for Left. |
| None | Type for None. |
| Right | Type for Right. |
| Up | Type for Up. |
| UpLeft | Type for UpLeft. |
| UpRight | Type for UpRight. |