com.primogemstudio.advancedfmk.kui.animation.CustomAnimationEvent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of advancedfmk-uicompositor Show documentation
Show all versions of advancedfmk-uicompositor Show documentation
UI parser & renderer for Advanced Framework
The newest version!
package com.primogemstudio.advancedfmk.kui.animation
@Suppress("UNCHECKED_CAST")
open class CustomAnimationEvent(open val updateFunc: () -> Unit):
AnimationEvent(0, 0, 0 as T, 0 as T, Linear, {}) {
override fun update() = updateFunc()
}