ZK_Framework/Assets/Scripts/Mono/Event/Args/DeleteModelEventArgs.cs

15 lines
374 B
C#
Raw Normal View History

2024-07-05 13:34:17 +08:00
namespace ZGame
{
public class DeleteModelEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(DeleteModelEventArgs).GetHashCode();
public override int Id => EventId;
public string modelName { get; }
public DeleteModelEventArgs(string modelName)
{
this.modelName = modelName;
}
}
}