Files
RaindropViewer/Assets/Plugins/ObjectPool/PoolException.cs
T

12 lines
202 B
C#

using System;
namespace Plugins.ObjectPool
{
public class PoolException : Exception
{
public PoolException(string insufficientTexturesInPool)
{
}
}
}