re-add TimeSpan to System for compatibility

storage_conversion
cosmonaut 2023-11-21 11:56:04 -08:00
parent fc2120cca9
commit a5c15305f1
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ public abstract class System : Manipulator
{
protected System(World world) : base(world) { }
public abstract void Update();
public abstract void Update(TimeSpan delta);
protected ReadOnlySpan<T> ReadMessages<T>() where T : unmanaged => World.ReadMessages<T>();
protected T ReadMessage<T>() where T : unmanaged => World.ReadMessage<T>();