blob: 79a95c0b166004f6f6e52346ac970350d13a68f1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package coffee.liz.ecs.physics
import coffee.liz.ecs.World
/**
* Runs a physics tick in [World].
*/
fun interface PhysicsTick<Outside> {
fun runTick(world: World<Outside>)
}
|