41 lines
942 B
C#
41 lines
942 B
C#
///////////////////////////////////
|
|
//// This is a generated file. ////
|
|
//// Do not modify it. ////
|
|
///////////////////////////////////
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace GAS.Runtime
|
|
{
|
|
public static class GAttrLib
|
|
{
|
|
/// <summary>
|
|
/// 生命值
|
|
/// </summary>
|
|
public const string HP = "HP";
|
|
|
|
/// <summary>
|
|
/// 移动速度
|
|
/// </summary>
|
|
public const string Speed = "Speed";
|
|
|
|
/// <summary>
|
|
/// 攻击力
|
|
/// </summary>
|
|
public const string Attack = "Attack";
|
|
|
|
/// <summary>
|
|
/// 魔法值
|
|
/// </summary>
|
|
public const string MP = "MP";
|
|
|
|
// For facilitating the creation of a Value Dropdown in the editor.
|
|
public static List<string> AttributeNames = new List<string>()
|
|
{
|
|
"HP",
|
|
"Speed",
|
|
"Attack",
|
|
"MP",
|
|
};
|
|
}
|
|
} |