mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 12:09:34 +08:00

* 统一命名 并禁止GameModuleServer调用DataRequest * 添加了GameModuleDepend (依赖集合) 用于整合Maps Characters Items Skills
10 lines
228 B
C#
10 lines
228 B
C#
using Milimoe.FunGame.Core.Controller;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.Addons
|
|
{
|
|
public interface IAddonController<T> where T : IAddon
|
|
{
|
|
public BaseAddonController<T> Controller { get; set; }
|
|
}
|
|
}
|