This commit is contained in:
Mikhail 2024-02-25 17:27:08 +08:00
parent c565332db8
commit 1924445074
3 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ namespace DCFApixels.DragonECS
{ {
get { return _source; } get { return _source; }
} }
public bool IReadOnly public bool IsReadOnly
{ {
get { return false; } get { return false; }
} }

View File

@ -12,7 +12,7 @@ namespace DCFApixels.DragonECS
Type ComponentType { get; } Type ComponentType { get; }
EcsWorld World { get; } EcsWorld World { get; }
int Count { get; } int Count { get; }
bool IReadOnly { get; } bool IsReadOnly { get; }
#endregion #endregion
#region Methods #region Methods
@ -107,7 +107,7 @@ namespace DCFApixels.DragonECS
Type IEcsReadonlyPool.ComponentType => typeof(NullComponent); Type IEcsReadonlyPool.ComponentType => typeof(NullComponent);
EcsWorld IEcsReadonlyPool.World => throw new NotImplementedException(); EcsWorld IEcsReadonlyPool.World => throw new NotImplementedException();
public int Count => -1; public int Count => -1;
public bool IReadOnly { get { return true; } } public bool IsReadOnly { get { return true; } }
#endregion #endregion
#region Methods #region Methods

View File

@ -58,7 +58,7 @@ namespace DCFApixels.DragonECS
{ {
get { return _source; } get { return _source; }
} }
public bool IReadOnly public bool IsReadOnly
{ {
get { return false; } get { return false; }
} }