diff options
Diffstat (limited to 'src/emap/struct/mapdext.h')
-rw-r--r-- | src/emap/struct/mapdext.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/emap/struct/mapdext.h b/src/emap/struct/mapdext.h new file mode 100644 index 0000000..15fee7f --- /dev/null +++ b/src/emap/struct/mapdext.h @@ -0,0 +1,17 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 Evol developers + +#ifndef EVOL_MAP_MAPDEXT +#define EVOL_MAP_MAPDEXT + +struct MapdExt +{ + unsigned int mask; + bool invisible; + struct MapdExtFlag + { + unsigned nopve : 1; + } flag; +}; + +#endif // EVOL_MAP_MAPDEXT |