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

* Add PluginLoader * 删除event返回值 * 添加插件触发器(方法组) * 删除冗余方法 * 将typeof(GetType())改写为this is * 删除无用引用
13 lines
286 B
C#
13 lines
286 B
C#
namespace Milimoe.FunGame.Core.Library.Common.Event
|
|
{
|
|
public class SendTalkEventArgs : GeneralEventArgs
|
|
{
|
|
public string Message { get; set; } = "";
|
|
|
|
public SendTalkEventArgs(string message = "")
|
|
{
|
|
this.Message = message;
|
|
}
|
|
}
|
|
}
|