2023-11-18 22:32:57 +01:00
|
|
|
using System;
|
|
|
|
|
|
|
|
public class LookupWorldSystem : IWorldSystemInterface {
|
|
|
|
public void RegisterEntityComponent(Entity entity, Component component) {
|
|
|
|
throw new NotImplementedException();
|
2023-02-12 16:30:56 +01:00
|
|
|
}
|
|
|
|
|
2023-11-18 22:32:57 +01:00
|
|
|
public void Update(float delta) {
|
|
|
|
throw new NotImplementedException();
|
2023-02-12 16:30:56 +01:00
|
|
|
}
|
|
|
|
}
|