This commit is contained in:
DCFApixels 2025-03-11 09:46:00 +08:00
parent fce0c34bc5
commit 02b98d5ed0

View File

@ -8,8 +8,8 @@ namespace DCFApixels.DragonECS
{
public partial class EcsWorld
{
private readonly SparseArray<int> _poolTypeCode_2_CmpTypeIDs = new SparseArray<int>();
private readonly SparseArray<int> _cmpTypeCode_2_CmpTypeIDs = new SparseArray<int>();
private SparseArray<int> _poolTypeCode_2_CmpTypeIDs = new SparseArray<int>();
private SparseArray<int> _cmpTypeCode_2_CmpTypeIDs = new SparseArray<int>();
internal IEcsPoolImplementation[] _pools;
internal PoolSlot[] _poolSlots;