summaryrefslogtreecommitdiffstats
path: root/src/core/ZoneCull.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-12-26 13:45:53 +0100
committeraap <aap@papnet.eu>2020-12-26 13:45:53 +0100
commitb41f93fcd67bb76d095c600312cf88201b667f05 (patch)
tree114ca735883e1c5675be858857a2f4217b8c2f56 /src/core/ZoneCull.h
parentWeapon flags changed from bit fields to bit mask (R* vision) (diff)
downloadre3-b41f93fcd67bb76d095c600312cf88201b667f05.tar
re3-b41f93fcd67bb76d095c600312cf88201b667f05.tar.gz
re3-b41f93fcd67bb76d095c600312cf88201b667f05.tar.bz2
re3-b41f93fcd67bb76d095c600312cf88201b667f05.tar.lz
re3-b41f93fcd67bb76d095c600312cf88201b667f05.tar.xz
re3-b41f93fcd67bb76d095c600312cf88201b667f05.tar.zst
re3-b41f93fcd67bb76d095c600312cf88201b667f05.zip
Diffstat (limited to 'src/core/ZoneCull.h')
-rw-r--r--src/core/ZoneCull.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/ZoneCull.h b/src/core/ZoneCull.h
index 8200b09a..d7780caf 100644
--- a/src/core/ZoneCull.h
+++ b/src/core/ZoneCull.h
@@ -17,12 +17,12 @@ enum eZoneAttribs
struct CAttributeZone
{
- float minx;
- float maxx;
- float miny;
- float maxy;
- float minz;
- float maxz;
+ int16 minx;
+ int16 maxx;
+ int16 miny;
+ int16 maxy;
+ int16 minz;
+ int16 maxz;
int16 attributes;
int16 wantedLevel;
};