View Javadoc

1   package cz.cuni.amis.pogamut.defcon.communication.worldview.modules.grid.flags;
2   
3   /**
4    * Flag representing a kind of location on a map.
5    * 
6    * @author Radek 'Black_Hand' Pibil
7    * 
8    */
9   public enum BasicFlag {
10  	SEA,
11  	LAND,
12  	OWN_TERRITORY,
13  	OWN_PLACEABLE_SEA,
14  	OWN_PLACEABLE_LAND,
15  	ENEMY_TERRITORY,
16  	ENEMY_PLACEABLE_SEA,
17  	ENEMY_PLACEABLE_LAND;
18  }