mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-18 14:34:04 +09:00
sprites!
Former-commit-id: 099c7d1b27988830f6c2d876684d4675078170e9 Former-commit-id: eea5b0ff2a04142e1a19505a98c252a6ca5aa666
This commit is contained in:
28
src/net/torvald/terrarum/gameactors/TapestryObject.kt
Normal file
28
src/net/torvald/terrarum/gameactors/TapestryObject.kt
Normal file
@@ -0,0 +1,28 @@
|
||||
package net.torvald.terrarum.gameactors
|
||||
|
||||
import org.newdawn.slick.Color
|
||||
import org.newdawn.slick.GameContainer
|
||||
import org.newdawn.slick.Graphics
|
||||
import java.io.File
|
||||
|
||||
/**
|
||||
* Created by SKYHi14 on 2017-01-07.
|
||||
*/
|
||||
class TapestryObject(imageDataPath: String) : FixtureBase() {
|
||||
|
||||
init {
|
||||
|
||||
}
|
||||
|
||||
override fun update(gc: GameContainer, delta: Int) {
|
||||
super.update(gc, delta)
|
||||
}
|
||||
|
||||
override fun drawBody(gc: GameContainer, g: Graphics) {
|
||||
super.drawBody(gc, g)
|
||||
}
|
||||
|
||||
override fun updateBodySprite(gc: GameContainer, delta: Int) {
|
||||
super.updateBodySprite(gc, delta)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user