mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 09:54:35 +08:00
fix name
This commit is contained in:
parent
c565332db8
commit
1924445074
@ -50,7 +50,7 @@ namespace DCFApixels.DragonECS
|
||||
{
|
||||
get { return _source; }
|
||||
}
|
||||
public bool IReadOnly
|
||||
public bool IsReadOnly
|
||||
{
|
||||
get { return false; }
|
||||
}
|
||||
|
@ -12,7 +12,7 @@ namespace DCFApixels.DragonECS
|
||||
Type ComponentType { get; }
|
||||
EcsWorld World { get; }
|
||||
int Count { get; }
|
||||
bool IReadOnly { get; }
|
||||
bool IsReadOnly { get; }
|
||||
#endregion
|
||||
|
||||
#region Methods
|
||||
@ -107,7 +107,7 @@ namespace DCFApixels.DragonECS
|
||||
Type IEcsReadonlyPool.ComponentType => typeof(NullComponent);
|
||||
EcsWorld IEcsReadonlyPool.World => throw new NotImplementedException();
|
||||
public int Count => -1;
|
||||
public bool IReadOnly { get { return true; } }
|
||||
public bool IsReadOnly { get { return true; } }
|
||||
#endregion
|
||||
|
||||
#region Methods
|
||||
|
@ -58,7 +58,7 @@ namespace DCFApixels.DragonECS
|
||||
{
|
||||
get { return _source; }
|
||||
}
|
||||
public bool IReadOnly
|
||||
public bool IsReadOnly
|
||||
{
|
||||
get { return false; }
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user