mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-09 01:14:36 +01:00
9 lines
175 B
C#
9 lines
175 B
C#
namespace Dalamud.EnumGenerator.Sample.SourceEnums
|
|
{
|
|
public enum SampleSourceEnum : long
|
|
{
|
|
First = 1,
|
|
Second = 2,
|
|
Third = 10000000000L
|
|
}
|
|
}
|