forked from zxl/LaboratoryProtection
11 lines
286 B
C#
11 lines
286 B
C#
|
namespace Mono.Event
|
|||
|
{
|
|||
|
public class RoleLabelEventArgs : GameEventArgs
|
|||
|
{
|
|||
|
public static readonly int EventId = typeof(RoleLabelEventArgs).GetHashCode();
|
|||
|
public override int Id => EventId;
|
|||
|
|
|||
|
public string speakContent;
|
|||
|
public object data;
|
|||
|
}
|
|||
|
}
|