8 lines
229 B
C#
8 lines
229 B
C#
|
namespace ZGameFramework
|
|||
|
{
|
|||
|
public class SaveSummaryEventArgs : GameEventArgs
|
|||
|
{
|
|||
|
public static readonly int EventId = typeof(SaveSummaryEventArgs).GetHashCode();
|
|||
|
public override int Id => EventId;
|
|||
|
}
|
|||
|
}
|