WaiXie_QuestionSystem/Assets/Script/Event/EventArgs/SaveSummaryEventArgs.cs

8 lines
229 B
C#

namespace ZGameFramework
{
public class SaveSummaryEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(SaveSummaryEventArgs).GetHashCode();
public override int Id => EventId;
}
}