mrplow442
05/15/2016, 5:23 PMclass InputSystem {
private inner class MoveCommand(val direction: Direction): Command {
enum class Direction {
LEFT,
RIGHT
}
operator fun invoke(entityId: Int) {
//Impl...
}
}
}