12 lines
200 B
C#
12 lines
200 B
C#
using System.Security;
|
|
|
|
namespace Decal.Interop.Core;
|
|
|
|
[SuppressUnmanagedCodeSecurity]
|
|
public enum eTrainLevel
|
|
{
|
|
eUntrained = 1,
|
|
eTrained = 2,
|
|
eSpecialized = 3,
|
|
eTrainLevel_DWORD = int.MaxValue
|
|
}
|