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

36 lines
996 B
C#
Raw Normal View History

2024-12-02 09:37:47 +08:00
// Felix-BangFBBulletInfo
//   へ     /|
//  /7    ∠_/
//  / │    
//  Z _,    /`ヽ
// │     ヽ   /  〉
//  Y     `  /  /
// イ● 、 ●  ⊂⊃〈  /
// ()  へ    | \〈
//  >ー 、_  ィ  │
//  / へ   / ノ<|
//  ヽ_ノ  (_  │//
//  7       |
//  ―r ̄ ̄`ー―_
// Describe子弹
// Createtime2018/10/18
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace FBApplication
{
public class FBBulletInfo
{
/// <summary> ID </summary>
public int ID;
/// <summary> 预制件名 </summary>
public string PrefabName;
/// <summary> 基本速度 </summary>
public float BaseSpeed;
/// <summary> 基础攻击力 </summary>
public int BaseAttack;
}
}