mycj_demo/mycj/Assets/Game/Scripts/Application/Args/FBEndLevelArgs.cs

36 lines
950 B
C#
Raw Normal View History

2024-12-02 09:37:47 +08:00
// Felix-BangFBEndLevelArgs
//   へ     /|
//  /7    ∠_/
//  / │    
//  Z _,    /`ヽ
// │     ヽ   /  〉
//  Y     `  /  /
// イ● 、 ●  ⊂⊃〈  /
// ()  へ    | \〈
//  >ー 、_  ィ  │
//  / へ   / ノ<|
//  ヽ_ノ  (_  │//
//  7       |
//  ―r ̄ ̄`ー―_
// Describe结束关卡的事件参数
// Createtime2018/9/27
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace FBApplication
{
public class FBEndLevelArgs
{
/// <summary> 关卡索引 </summary>
public int ID { get; set; }
/// <summary>
/// 结束类型闯关成功true/失败false
/// </summary>
public bool IsWin;
}
}