milimoe 7bc244ff49
添加HTTP相关(WebSocket) (#74)
* 添加HTTP相关(WebSocket)

* 添加WebDataRequest
2024-05-11 13:14:08 +08:00

13 lines
300 B
C#

namespace Milimoe.FunGame.Core.Interface.Addons
{
public interface IAddon
{
public string Name { get; }
public string Description { get; }
public string Version { get; }
public string Author { get; }
public bool Load(params object[] objs);
}
}