mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 12:39:35 +08:00
11 lines
319 B
C#
11 lines
319 B
C#
namespace Milimoe.FunGame.Core.Library.Common.Architecture
|
||
{
|
||
public abstract class BaseController
|
||
{
|
||
/// <summary>
|
||
/// 重写此方法并调用Model的Dispose方法,否则将无法正常将监听Socket的事件移除!
|
||
/// </summary>
|
||
public abstract void Dispose();
|
||
}
|
||
}
|