ace/Source/ACE.DatLoader/DatDatabaseType.cs

13 lines
241 B
C#
Raw Normal View History

namespace ACE.DatLoader
{
public enum DatDatabaseType : byte
{
Portal = 1,
Cell = 2,
// These are not defined in the client, but we may want to use these
Highres = 3,
Language = 4
}
}