NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Pool/IPoolData.cs

9 lines
118 B
C#
Raw Normal View History

2023-10-19 15:00:19 +08:00
namespace Gameplay.Pool
{
public interface IPoolData
{
void OnGet();
void OnReturn();
}
}