11 lines
104 B
C#
11 lines
104 B
C#
|
namespace SimpleObjectPool
|
||
|
{
|
||
|
|
||
|
|
||
|
internal interface IPooledObject
|
||
|
{
|
||
|
void Free();
|
||
|
}
|
||
|
|
||
|
}
|