10 lines
125 B
C#
10 lines
125 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
[CLSCompliant(true)]
|
|
public enum PlayerXPEventType
|
|
{
|
|
Total,
|
|
Unassigned
|
|
}
|