1
0
Fork 0
LaboratoryProtection/Assets/UnityTest/ZXL/Scripts/Event/Args/UpgradeEventArgs.cs

29 lines
719 B
C#
Raw Normal View History

2023-09-14 15:36:17 +08:00
using DragonSoul.Shared;
namespace Mono.Event
2023-09-13 09:28:54 +08:00
{
public class UpgradeEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(UpgradeEventArgs).GetHashCode();
public override int Id => EventId;
public long entityId;
public int level;
public UpgradeEventArgs(long entityId, int level)
{
this.entityId = entityId;
this.level = level;
}
}
2023-09-14 15:36:17 +08:00
public class ETTaskEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(ETTaskEventArgs).GetHashCode();
public override int Id => EventId;
public ETTask task;
public string dec;
}
2023-09-13 09:28:54 +08:00
}