using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZFramework { public static partial class GameFrameworkLog { /// /// 框架日志辅助器接口。 /// public interface ILogHelper { /// /// 记录日志。 /// /// 游戏框架日志等级。 /// 日志内容。 void Log(GameFrameworkLogLevel level, object message); } } }