mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
11 lines
177 B
Kotlin
Vendored
11 lines
177 B
Kotlin
Vendored
package test
|
|
|
|
open class Actor
|
|
|
|
abstract public class O2dScriptAction<T : Actor> {
|
|
protected var owner: T? = null
|
|
private set
|
|
|
|
protected fun calc(): T? = null
|
|
|
|
} |