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: GoRogue
Assembly: GoRogue.dll
Syntax
public enum Types
Fields
Name | Description |
---|---|
DOWN | Type for DOWN. |
DOWN_LEFT | Type for DOWN_LEFT. |
DOWN_RIGHT | Type for DOWN_RIGHT. |
LEFT | Type for LEFT. |
NONE | Type for NONE. |
RIGHT | Type for RIGHT. |
UP | Type for UP. |
UP_LEFT | Type for UP_LEFT. |
UP_RIGHT | Type for UP_RIGHT. |