forked from zxl/LaboratoryProtection
18 lines
427 B
C#
18 lines
427 B
C#
using UnityEngine;
|
|
using UnityTest.ZXL;
|
|
|
|
namespace Mono.Event
|
|
{
|
|
public class ConstEventArgs : GameEventArgs
|
|
{
|
|
public static readonly int EventId = typeof(ConstEventArgs).GetHashCode();
|
|
public override int Id => EventId;
|
|
|
|
public ConstDataType constDataType;
|
|
|
|
public ConstEventArgs(ConstDataType constDataType)
|
|
{
|
|
this.constDataType = constDataType;
|
|
}
|
|
}
|
|
} |