// 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 字段
/// 当前回合索引
public int RoundIndex;
/// 总回合数
public int RoundTotal;
/// 回合提示
public int RoundTips;
#endregion
}
}