diff --git a/src/Pools/EcsPool.cs b/src/Pools/EcsPool.cs index a0b918e..49b5966 100644 --- a/src/Pools/EcsPool.cs +++ b/src/Pools/EcsPool.cs @@ -50,7 +50,7 @@ namespace DCFApixels.DragonECS { get { return _source; } } - public bool IReadOnly + public bool IsReadOnly { get { return false; } } diff --git a/src/Pools/EcsPoolBase.cs b/src/Pools/EcsPoolBase.cs index 3329275..fbfe294 100644 --- a/src/Pools/EcsPoolBase.cs +++ b/src/Pools/EcsPoolBase.cs @@ -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 diff --git a/src/Pools/EcsTagPool.cs b/src/Pools/EcsTagPool.cs index cdf9f33..4f499b6 100644 --- a/src/Pools/EcsTagPool.cs +++ b/src/Pools/EcsTagPool.cs @@ -58,7 +58,7 @@ namespace DCFApixels.DragonECS { get { return _source; } } - public bool IReadOnly + public bool IsReadOnly { get { return false; } }