namespace OECS;
///
/// A system that receives tick data (delta time or logical tick) in addition
/// to the world reference.
///
public interface ITickedSystem : ISystem
{
///
/// Implement this with the system's ticked logic.
///
void RunImpl(World world, Tick tick);
}