package coffee.liz.ecs.physics import coffee.liz.ecs.World /** * Runs a physics tick in [World]. */ fun interface PhysicsTick { fun runTick(world: World) }