Added fade effect

This commit is contained in:
Ziver Koc 2007-04-08 15:57:10 +00:00
parent 793b3a99da
commit e3b9e3165a
16 changed files with 345 additions and 3 deletions

View file

@ -9,6 +9,7 @@ import org.lwjgl.opengl.GL11;
import ei.engine.math.Vector2f;
import ei.engine.math.Vector3f;
import ei.engine.texture.Texture;
/**
* This class is the root class of all the objects that
@ -157,4 +158,6 @@ public abstract class Entity {
public void update(){}
public abstract Rectangle getBound();
public abstract Texture getTexture();
}