mycj_demo/mycj/Assets/Game/Scripts/Application/StaticData/FBCarrotInfo.cs

34 lines
866 B
C#
Raw Normal View History

2024-12-02 09:37:47 +08:00
// Felix-BangFBCarrotInfo
//   へ     /|
//  /7    ∠_/
//  / │    
//  Z _,    /`ヽ
// │     ヽ   /  〉
//  Y     `  /  /
// イ● 、 ●  ⊂⊃〈  /
// ()  へ    | \〈
//  >ー 、_  ィ  │
//  / へ   / ノ<|
//  ヽ_ノ  (_  │//
//  7       |
//  ―r ̄ ̄`ー―_
// Describe萝卜
// Createtime2018/10/15
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace FBApplication
{
public class FBCarrotInfo
{
#region
/// <summary> ID </summary>
public int ID;
/// <summary> 血量 </summary>
public int HP;
#endregion
}
}