15 lines
374 B
C#
15 lines
374 B
C#
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|