16 lines
407 B
C#
16 lines
407 B
C#
|
using ZGame;
|
|||
|
|
|||
|
namespace Runtime
|
|||
|
{
|
|||
|
public class ProductIsShowDesignCoverEventArgs : GameEventArgs
|
|||
|
{
|
|||
|
public static readonly int EventId = typeof(ProductIsShowDesignCoverEventArgs).GetHashCode();
|
|||
|
public override int Id => EventId;
|
|||
|
public bool isShow;
|
|||
|
|
|||
|
public ProductIsShowDesignCoverEventArgs(bool isShow)
|
|||
|
{
|
|||
|
this.isShow = isShow;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|