mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
13 lines
300 B
C#
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);
|
|
}
|
|
}
|