summaryrefslogtreecommitdiff
path: root/composeApp/src/commonMain/kotlin/coffee/liz/ecs/input/Controlled.kt
blob: 8c54bfe22024fd0f965affdb40c866c0d9f19c67 (plain)
1
2
3
4
5
6
7
package coffee.liz.ecs.input

import coffee.liz.ecs.Component

interface Controlled: Component {
    fun handleInput(inputState: InputState)
}