GodotComponentTest/systems/WorldSystemInterface.cs

4 lines
142 B
C#
Raw Normal View History

2023-11-18 22:32:57 +01:00
public interface IWorldSystemInterface {
void RegisterEntityComponent(Entity entity, Component component);
void Update(float delta);
}