mycj_demo/mycj/Assets/Game/Scripts/Application/Args/FBRoundStartArgs.cs
2024-12-02 09:37:47 +08:00

38 lines
996 B
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Felix-BangFBRoundStartArgs
//   へ     /|
//  /7    ∠_/
//  / │    
//  Z _,    /`ヽ
// │     ヽ   /  〉
//  Y     `  /  /
// イ● 、 ●  ⊂⊃〈  /
// ()  へ    | \〈
//  >ー 、_  ィ  │
//  / へ   / ノ<|
//  ヽ_ノ  (_  │//
//  7       |
//  ―r ̄ ̄`ー―_
// Describe回合参数
// Createtime2018/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
}
}