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

46 lines
1.3 KiB
C#
Raw Normal View History

2024-12-02 09:37:47 +08:00
// Felix-BangFBTowerInfo
//   へ     /|
//  /7    ∠_/
//  / │    
//  Z _,    /`ヽ
// │     ヽ   /  〉
//  Y     `  /  /
// イ● 、 ●  ⊂⊃〈  /
// ()  へ    | \〈
//  >ー 、_  ィ  │
//  / へ   / ノ<|
//  ヽ_ノ  (_  │//
//  7       |
//  ―r ̄ ̄`ー―_
// Describe炮塔信息
// Createtime2018/10/16
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace FBApplication
{
public class FBTowerInfo
{
/// <summary> ID </summary>
public int ID;
/// <summary> 预制件 </summary>
public string PrefabName;
/// <summary> 正常图标 </summary>
public string NormalIcon;
/// <summary> 失效图标 </summary>
public string DisabledIcon;
/// <summary> 最高等级 </summary>
public int MaxLevel;
/// <summary> 价格 </summary>
public int BasePrice;
/// <summary> 射击频率 </summary>
public float ShotRate;
/// <summary> 警戒范围 </summary>
public float GuardRange;
/// <summary> 子弹ID </summary>
public int UseBulletID;
}
}