12 lines
299 B
C#
12 lines
299 B
C#
|
public class LookupWorldSystem : IWorldSystemInterface
|
||
|
{
|
||
|
public void RegisterEntityComponent(Entity entity, Component component)
|
||
|
{
|
||
|
throw new System.NotImplementedException();
|
||
|
}
|
||
|
|
||
|
public void Update(float delta)
|
||
|
{
|
||
|
throw new System.NotImplementedException();
|
||
|
}
|
||
|
}
|