mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Fix Replace Animation Hook * SoundTable * Numerous Dat Updates * Added highres and language export commands
12 lines
241 B
C#
12 lines
241 B
C#
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
|
|
}
|
|
}
|