GameProto

GameProto
This commit is contained in:
ALEXTANG
2023-04-11 20:19:20 +08:00
parent 9d70c9d3fd
commit 21d2a96d51
56 changed files with 2010 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
//------------------------------------------------------------------------------
// <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 GameConfig.item
{
public enum EQuality
{
/// <summary>
/// 最差品质
/// </summary>
WHITE = 1,
/// <summary>
/// 蓝色的
/// </summary>
BLUE = 2,
/// <summary>
/// 紫色的
/// </summary>
PURPLE = 3,
/// <summary>
/// 最高品质
/// </summary>
RED = 4,
}
}