support for texture packs

This commit is contained in:
minjaesong
2022-02-23 17:59:38 +09:00
parent 841a77403b
commit 7c966b0da8
36 changed files with 2818 additions and 142 deletions

View File

@@ -1,6 +1,5 @@
package net.torvald.terrarum
import com.badlogic.gdx.graphics.g2d.SpriteBatch
/**
* Created by minjaesong on 2018-06-21.
@@ -8,5 +7,5 @@ import com.badlogic.gdx.graphics.g2d.SpriteBatch
abstract class ModuleEntryPoint {
abstract fun invoke()
abstract fun dispose()
open fun getTitleScreen(batch: SpriteBatch): IngameInstance? = null
open fun getTitleScreen(batch: FlippingSpriteBatch): IngameInstance? = null
}