You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
288 B

5 months ago
using System;
namespace Tools.ExcelResolver
5 months ago
{
5 months ago
[Flags]
5 months ago
public enum CustomizeColor
{
yellow = 0,
red = 1,
green = 2,
5 months ago
blue = 4,
5 months ago
}
public enum Attribute
{
hp = 0,
atk = 1,
speed = 2,
def = 3,
}
}