Files
Main/Assets/Plugins/References/FuncellBase/ObjectPool/IObjectPool.cs

14 lines
175 B
C#
Raw Normal View History

2025-01-25 04:38:09 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Thousandto.Core.Base
{
public interface IObjectPool
{
void Sweep();
}
}