GodotComponentTest/systems/WorldSystemInterface.cs

5 lines
142 B
C#
Raw Normal View History

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