mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-19 02:24:37 +08:00
fix name
This commit is contained in:
parent
c565332db8
commit
1924445074
@ -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; }
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
|
@ -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; }
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user