mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-17 17:34:36 +08:00
Delete EcsPreFilter.cs
This commit is contained in:
parent
bc4375808d
commit
c3922074ea
@ -1,36 +0,0 @@
|
||||
namespace DCFApixels.DragonECS
|
||||
{
|
||||
public class EcsPreFilter
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public class EcsPreFilterManager
|
||||
{
|
||||
private EcsWorld _world;
|
||||
private EcsGroup _dirtyEntities;
|
||||
|
||||
public EcsPreFilterManager(EcsWorld world)
|
||||
{
|
||||
_world = world;
|
||||
_dirtyEntities = EcsGroup.New(_world);
|
||||
}
|
||||
|
||||
internal void AddDirty(int entityID)
|
||||
{
|
||||
_dirtyEntities.Add(entityID);
|
||||
}
|
||||
}
|
||||
public class PoolListener : IEcsPoolEventListener
|
||||
{
|
||||
public void OnAdd(int entityID)
|
||||
{
|
||||
}
|
||||
public void OnDel(int entityID)
|
||||
{
|
||||
}
|
||||
public void OnGet(int entityID)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user