8 lines
317 B
C#
8 lines
317 B
C#
namespace IslaApocalypse.Core
|
|
{
|
|
// The master list of shared identifiers for the game
|
|
public enum Biome { Ocean, Lake, Beach, Paradise, Tropical, Jungle, Wasteland, Crater, Mountain, Snow }
|
|
public enum TownTier { Village, Hub, Capitol, Outpost, IslandLoot, MiniPOI }
|
|
public enum MapHalf { Any, Left, Right }
|
|
|
|
}
|