9 lines
118 B
C#
9 lines
118 B
C#
|
|
namespace Gameplay.Pool
|
||
|
|
{
|
||
|
|
public interface IPoolData
|
||
|
|
{
|
||
|
|
void OnGet();
|
||
|
|
void OnReturn();
|
||
|
|
}
|
||
|
|
}
|