Files
Main/Assets/Plugins/References/FuncellBase/ObjectPool/IObjectPool.cs
2025-01-25 04:38:09 +08:00

14 lines
175 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Thousandto.Core.Base
{
public interface IObjectPool
{
void Sweep();
}
}