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.
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Tools.ExcelResolver
|
|
|
|
{
|
|
|
|
[Flags]
|
|
|
|
public enum CustomizeColor
|
|
|
|
{
|
|
|
|
yellow = 0,
|
|
|
|
red = 1,
|
|
|
|
green = 2,
|
|
|
|
blue = 4,
|
|
|
|
}
|
|
|
|
|
|
|
|
public enum Attribute
|
|
|
|
{
|
|
|
|
hp = 0,
|
|
|
|
atk = 1,
|
|
|
|
speed = 2,
|
|
|
|
def = 3,
|
|
|
|
}
|
|
|
|
}
|