mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-19 10:34:37 +08:00
17 lines
408 B
C#
17 lines
408 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace DCFApixels.DragonECS
|
|||
|
{
|
|||
|
public interface IEcsTableMember
|
|||
|
{
|
|||
|
public int PoolID { get; }
|
|||
|
}
|
|||
|
public interface IEcsMemberCachePool<TSelf, T> : IEcsTableMember
|
|||
|
where TSelf: struct, IEcsTableMember
|
|||
|
{
|
|||
|
public EcsFieldPool<T> Pool { get; }
|
|||
|
public void Inject(out TSelf self, EcsFieldPool<T> pool);
|
|||
|
}
|
|||
|
}
|