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