mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 12:09:34 +08:00
13 lines
267 B
C#
13 lines
267 B
C#
namespace Milimoe.FunGame.Core.Library.Common.Event
|
|
{
|
|
public class SendTalkEventArgs
|
|
{
|
|
public string Message { get; set; } = "";
|
|
|
|
public SendTalkEventArgs(string message = "")
|
|
{
|
|
this.Message = message;
|
|
}
|
|
}
|
|
}
|