|
using System;
|
|
|
|
public class LookupWorldSystem : IWorldSystemInterface {
|
|
public void RegisterEntityComponent(Entity entity, Component component) {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Update(float delta) {
|
|
throw new NotImplementedException();
|
|
}
|
|
} |