mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2026-03-06 06:30:26 +00:00
14 lines
350 B
C#
14 lines
350 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);
|
|
public void UnLoad(params object[] objs);
|
|
}
|
|
}
|