mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
14 lines
278 B
C
14 lines
278 B
C
#ifndef VMAPEXPORT_H
|
|
#define VMAPEXPORT_H
|
|
|
|
enum ModelFlags
|
|
{
|
|
MOD_M2 = 1,
|
|
MOD_WORLDSPAWN = 1<<1,
|
|
MOD_HAS_BOUND = 1<<2
|
|
};
|
|
|
|
extern const char * szWorkDirWmo;
|
|
extern const char * szRawVMAPMagic; // vmap magic string for extracted raw vmap data
|
|
|
|
#endif
|