Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
IntoTheDev committed Apr 28, 2021
1 parent 06db1ae commit 5cc0a8c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Runtime/Pool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace ToolBox.Pools
{
public sealed class Pool
internal sealed class Pool
{
private readonly Poolable _prefab = null;
private readonly Stack<Poolable> _instances = null;
Expand Down
2 changes: 1 addition & 1 deletion Runtime/PoolInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace ToolBox.Pools
{
[DefaultExecutionOrder(-9999)]
public class PoolInstaller : MonoBehaviour
internal sealed class PoolInstaller : MonoBehaviour
{
[SerializeField] private PoolContainer[] _pools = null;

Expand Down
2 changes: 1 addition & 1 deletion Runtime/Poolable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace ToolBox.Pools
{
[DisallowMultipleComponent]
public class Poolable : MonoBehaviour
internal sealed class Poolable : MonoBehaviour
{
private IPoolable[] _poolables = new IPoolable[0];

Expand Down

0 comments on commit 5cc0a8c

Please sign in to comment.