GodotComponentTest/systems/WorldSystemInterface.cs

4 lines
142 B
C#

public interface IWorldSystemInterface {
void RegisterEntityComponent(Entity entity, Component component);
void Update(float delta);
}