Back to project page eent-for-android.
The source code is released under:
GNU General Public License
If you think the Android project eent-for-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * CivTile.java/* ww w . j ava 2 s.com*/ * * Created on 24 maart 2003, 10:32 */ /* It is distributed under the GNU Public Licence (GPL) version 2. See http://www.gnu.org/ for further details of the GPL. */ package eu.veldsoft.eent; /** * * @author Administrator */ class CivTile extends Tile { public static final int MARKET = 1111; public static final int FARM = 2222; public static final int TEMPLE = 3333; public static final int SETTLEMENT = 4444; private int civTileType; /** Creates a new instance of CivTile */ public CivTile(int civType) { super(Tile.CIV_TILE); civTileType = civType; } /** return the civilisation type */ public int getCivType() { return civTileType; } }