chore(scene): remove abstract from dispose
Not all scenes need to have the custom dispose method.
This commit is contained in:
@ -4,5 +4,7 @@ import com.badlogic.gdx.graphics.g2d.SpriteBatch;
|
||||
|
||||
public abstract class Scene {
|
||||
public abstract void render(SpriteBatch batch);
|
||||
public abstract void dispose();
|
||||
public void dispose() {
|
||||
// Default implementation does nothing
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user