2024-11-08 11:05:33 +08:00
|
|
|
namespace ZC
|
2024-10-24 16:16:57 +08:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|