mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* 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
12 lines
385 B
C#
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
|
|
}
|
|
}
|