milimoe eb0bb86f38
添加插件接口 (#53)
* 开发插件接口和基类

* 添加构造方法

* 添加PluginManager
2023-09-19 00:15:07 +08:00

13 lines
274 B
C#

namespace Milimoe.FunGame.Core.Interface
{
public interface IPlugin
{
public string Name { get; }
public string Description { get; }
public string Version { get; }
public string Author { get; }
public void Load();
}
}