20 lines
300 B
C#
20 lines
300 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
[CLSCompliant(true)]
|
|
public enum AttributeType
|
|
{
|
|
CurrentStrength = 1,
|
|
CurrentEndurance,
|
|
CurrentQuickness,
|
|
CurrentCoordination,
|
|
CurrentFocus,
|
|
CurrentSelf,
|
|
BaseStrength,
|
|
BaseEndurance,
|
|
BaseQuickness,
|
|
BaseCoordination,
|
|
BaseFocus,
|
|
BaseSelf
|
|
}
|