15 lines
371 B
C#
15 lines
371 B
C#
namespace ZC
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
} |