TheInitialProject/Assets/Scripts/LubanTables/dungeon/Mode.cs
2024-10-23 16:59:02 +08:00

39 lines
917 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.dungeon
{
public enum Mode
{
/// <summary>
/// 经验
/// </summary>
Exp = 1,
/// <summary>
/// 华夏币
/// </summary>
Money = 2,
/// <summary>
/// 材料
/// </summary>
Material = 3,
/// <summary>
/// 宠物
/// </summary>
Pet = 4,
/// <summary>
/// 银元
/// </summary>
YinYuan = 5,
/// <summary>
/// 远古
/// </summary>
YuanGu = 6,
}
}