36 lines
950 B
C#
36 lines
950 B
C#
|
// Felix-Bang:FBEndLevelArgs
|
|||
|
// へ /|
|
|||
|
// /\7 ∠_/
|
|||
|
// / │ / /
|
|||
|
// │ Z _,< / /`ヽ
|
|||
|
// │ ヽ / 〉
|
|||
|
// Y ` / /
|
|||
|
// イ● 、 ● ⊂⊃〈 /
|
|||
|
// () へ | \〈
|
|||
|
// >ー 、_ ィ │ //
|
|||
|
// / へ / ノ<| \\
|
|||
|
// ヽ_ノ (_/ │//
|
|||
|
// 7 |/
|
|||
|
// >―r ̄ ̄`ー―_
|
|||
|
// Describe:结束关卡的事件参数
|
|||
|
// Createtime:2018/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;
|
|||
|
}
|
|||
|
}
|
|||
|
|