38 lines
996 B
C#
38 lines
996 B
C#
// Felix-Bang:FBRoundStartArgs
|
||
// へ /|
|
||
// /\7 ∠_/
|
||
// / │ / /
|
||
// │ Z _,< / /`ヽ
|
||
// │ ヽ / 〉
|
||
// Y ` / /
|
||
// イ● 、 ● ⊂⊃〈 /
|
||
// () へ | \〈
|
||
// >ー 、_ ィ │ //
|
||
// / へ / ノ<| \\
|
||
// ヽ_ノ (_/ │//
|
||
// 7 |/
|
||
// >―r ̄ ̄`ー―_
|
||
// Describe:回合参数
|
||
// Createtime:2018/10/12
|
||
|
||
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using UnityEngine;
|
||
|
||
namespace FBApplication
|
||
{
|
||
public class FBRoundStartArgs
|
||
{
|
||
#region 字段
|
||
/// <summary> 当前回合索引 </summary>
|
||
public int RoundIndex;
|
||
/// <summary> 总回合数 </summary>
|
||
public int RoundTotal;
|
||
/// <summary> 回合提示 </summary>
|
||
public int RoundTips;
|
||
#endregion
|
||
|
||
|
||
}
|
||
}
|