Back to project page SimpleGame.
The source code is released under:
GNU General Public License
If you think the Android project SimpleGame 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 ru.rs.gameobjects; /* w ww . j av a 2 s .c om*/ import ru.rs.Resources; import ru.rs.interfaces.Game; public class Unit extends DynamicObject { public Unit(Side side, Game game) { super(side, game); } @Override protected void setImage() { this.image = Resources.unit; } }