mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
11 lines
342 B
C#
11 lines
342 B
C#
namespace ACE.DatLoader
|
|
{
|
|
public enum DatDatabaseType : byte
|
|
{
|
|
Portal = 1, // client_portal.dat and client_highres.dat both have this value
|
|
Cell = 2, // client_cell_1.dat
|
|
|
|
// This is not explicity defined in the client, but we may want to use these
|
|
Language = 3 // client_local_English.dat
|
|
}
|
|
}
|