ace/Source/ACE.DatLoader/DatDatabaseType.cs
Ty Conner 8c760cb9ef
Wire up support for HighRes DAT handling (#4469)
* Update DDDHandler.cs

Ignore HIRES DAT file iteration response

* Update DatDatabaseType.cs

* Update DatFile.cs

* Update DDDManager.cs

* Update PropertyManager.cs

* Update WorldManager.cs

* Update GameMessageDDDBeginDDD.cs

* Update GameMessageDDDDataMessage.cs

* Update GameMessageDDDInterrogation.cs

* Update DDDHandler.cs

* Update Session.cs

* Update DDDHandler.cs
2026-07-29 13:03:36 -04:00

12 lines
385 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
HighRes = 4 // client_highres.dat
}
}