Back to project page FooTD.
The source code is released under:
GNU General Public License
If you think the Android project FooTD listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.android.footd; /* ww w . java2s .co m*/ import android.graphics.Point; public class Tower extends GridObject { TowerType type; public Tower(Point gridCoord, TowerType type) { super(gridCoord, type.sprite); this.type = type; } }