This is a big commit. Added mouse cursors and a load bar. Started whit the game. and many many other things

This commit is contained in:
Ziver Koc 2007-03-29 23:21:00 +00:00
parent 448fca2fdf
commit 4e7722fedb
34 changed files with 597 additions and 95 deletions

View file

@ -0,0 +1,12 @@
package ei.game.scene.units;
import ei.game.scene.GameEntity;
public abstract class Unit extends GameEntity{
public Unit(int l) {
super(l);
// TODO Auto-generated constructor stub
}
}