mirror of
https://github.com/mangosfour/server.git
synced 2025-12-30 01:37:03 +00:00
Note: This is not compatible with current assembler, wait for upcoming commits * Now also supports Linux (CMake) and Visual Studio 2010, see README for build and use instructions * Uses libmpq for now, since at project start stormlib did not work properly on 64bit linux. * Should be a lot faster, a few badly written lines ate most CPU time for nothing... Special thanks to arrai and faramir118 for additional code and fixes
13 lines
169 B
C
13 lines
169 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;
|
|
|
|
#endif
|