module poison.core.location;

/// Enumeration of locations.
enum Location {
  /// North west.
  northWest,
  /// North.
  north,
  /// North east.
  northEast,
  /// East.
  east,
  /// South east.
  southEast,
  /// South.
  south,
  /// South west.
  southWest,
  /// West.
  west,
  /// Center.
  center
}