11 lines
319 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Milimoe.FunGame.Core.Library.Common.Architecture
{
public abstract class BaseController
{
/// <summary>
/// 重写此方法并调用Model的Dispose方法否则将无法正常将监听Socket的事件移除
/// </summary>
public abstract void Dispose();
}
}