2018-02-05 21:26:06 -06:00
|
|
|
namespace ACE.DatLoader
|
2017-03-15 08:12:21 -04:00
|
|
|
{
|
2018-02-05 21:26:06 -06:00
|
|
|
public enum DatDatabaseType : byte
|
2017-03-15 08:12:21 -04:00
|
|
|
{
|
2019-03-08 17:05:49 -07:00
|
|
|
Portal = 1, // client_portal.dat and client_highres.dat both have this value
|
|
|
|
|
Cell = 2, // client_cell_1.dat
|
2018-07-05 05:50:42 -07:00
|
|
|
|
2019-03-08 17:05:49 -07:00
|
|
|
// This is not explicity defined in the client, but we may want to use these
|
2026-07-29 13:03:36 -04:00
|
|
|
Language = 3, // client_local_English.dat
|
|
|
|
|
HighRes = 4 // client_highres.dat
|
2017-03-15 08:12:21 -04:00
|
|
|
}
|
|
|
|
|
}
|