14 lines
175 B
C#
14 lines
175 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
namespace Thousandto.Core.Base
|
|
{
|
|
public interface IObjectPool
|
|
{
|
|
void Sweep();
|
|
}
|
|
|
|
}
|