uicanvas: updateUI/renderUI to updateImpl/renderImpl to match the naming scheme with the actor

This commit is contained in:
minjaesong
2024-02-12 17:28:23 +09:00
parent 5f1e63e370
commit 16c52a5e11
72 changed files with 147 additions and 154 deletions

View File

@@ -63,7 +63,7 @@ abstract class Actor : Comparable<Actor>, Runnable {
}
}
open fun updateImpl(delta: Float) {}
abstract fun updateImpl(delta: Float)
var actorValue = ActorValue(this)
@Volatile var flagDespawn = false