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

@ -4,6 +4,7 @@ import java.awt.Rectangle;
import ei.engine.math.Vector3f;
import ei.engine.scene.Entity;
import ei.engine.texture.Texture;
/**
* A sound that can be played through OpenAL
@ -103,4 +104,9 @@ public class Sound extends Entity{
10, 10);
}
@Override
public Texture getTexture() {
return null;
}
}