12 lines
146 B
C#
12 lines
146 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
[CLSCompliant(true)]
|
|
public enum TrainingType
|
|
{
|
|
Unusable,
|
|
Untrained,
|
|
Trained,
|
|
Specialized
|
|
}
|