// // GameApp.cs // Create: // 2019-10-29 // Description: // 插件接口 // Author: // 薛林强 <545626463@qq.com> // // Copyright (c) 2026 虚幻骑士科技 namespace Skyunion { public interface IPlugin : IModule { //------------- 接口 -------------------// string GetPluginName(); void Install(); void Uninstall(); }; }