32 lines
740 B
C#
32 lines
740 B
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
namespace cfg
|
|
{
|
|
/// <summary>
|
|
/// 鱼的基础属性
|
|
/// </summary>
|
|
public enum FishBasicStats
|
|
{
|
|
/// <summary>
|
|
/// 力量
|
|
/// </summary>
|
|
Power = 1,
|
|
/// <summary>
|
|
/// 速度
|
|
/// </summary>
|
|
Speed = 2,
|
|
/// <summary>
|
|
/// 警惕性
|
|
/// </summary>
|
|
Vigilance = 3,
|
|
}
|
|
|
|
}
|