2024-11-08 11:05:33 +08:00
|
|
|
|
namespace ZC
|
2024-10-24 16:16:57 +08:00
|
|
|
|
{
|
|
|
|
|
public class LoadingGameSceneFinishEventArgs : GameEventArgs
|
|
|
|
|
{
|
|
|
|
|
public static readonly int EventId = typeof(LoadingGameSceneFinishEventArgs).GetHashCode();
|
|
|
|
|
public override int Id => EventId;
|
|
|
|
|
|
|
|
|
|
public bool IsFinish { get; }
|
|
|
|
|
|
|
|
|
|
public LoadingGameSceneFinishEventArgs(bool isFinish)
|
|
|
|
|
{
|
|
|
|
|
IsFinish = isFinish;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|