blob: ddda2d69b4d41ae8cc2838dfc61178836aa08fd4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package coffee.liz.ecs.input
import coffee.liz.ecs.Component
/**
* Processes the [InputState].
*/
fun interface Controlled : Component {
fun handleInput(inputState: InputState)
}
|