5 lines
142 B
C#
5 lines
142 B
C#
|
public interface IWorldSystemInterface
|
||
|
{
|
||
|
void RegisterEntityComponent(Entity entity, Component component);
|
||
|
void Update(float delta);
|
||
|
}
|