15 lines
368 B
C#
15 lines
368 B
C#
|
namespace ZGame
|
||
|
{
|
||
|
public class LoadModelEventArgs : GameEventArgs
|
||
|
{
|
||
|
public static readonly int EventId = typeof(LoadModelEventArgs).GetHashCode();
|
||
|
public override int Id => EventId;
|
||
|
|
||
|
public string modelName { get; }
|
||
|
|
||
|
public LoadModelEventArgs(string modelName)
|
||
|
{
|
||
|
this.modelName = modelName;
|
||
|
}
|
||
|
}
|
||
|
}
|