14 lines
176 B
C#
14 lines
176 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
[CLSCompliant(true)]
|
|
public enum PlayerModifyEventType
|
|
{
|
|
Skill,
|
|
Attribute,
|
|
Vital,
|
|
Statistic,
|
|
Allegiance,
|
|
Augmentation
|
|
}
|