chore(scene): remove abstract from dispose

Not all scenes need to have the custom dispose method.
This commit is contained in:
2025-09-30 01:01:27 +07:00
parent bed441c41c
commit 7cb9feaead

View File

@ -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
}
}