diff options
author | Mattes D <github@xoft.cz> | 2014-02-24 18:30:44 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-02-24 18:30:44 +0100 |
commit | 23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6 (patch) | |
tree | dd8975008870688e77b33a20072fd54e7e34bb9c /src/WorldStorage/WSSAnvil.h | |
parent | Merge pull request #722 from mc-server/CompileFix_C++03 (diff) | |
parent | Fixed Formatting, added compiler warning suppressing methods, fixed comments (diff) | |
download | cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.gz cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.bz2 cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.lz cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.xz cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.zst cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.zip |
Diffstat (limited to 'src/WorldStorage/WSSAnvil.h')
-rw-r--r-- | src/WorldStorage/WSSAnvil.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/WorldStorage/WSSAnvil.h b/src/WorldStorage/WSSAnvil.h index 541371560..4acf3f2a1 100644 --- a/src/WorldStorage/WSSAnvil.h +++ b/src/WorldStorage/WSSAnvil.h @@ -10,6 +10,7 @@ #include "WorldStorage.h" #include "FastNBT.h" +#include "../Mobs/Monster.h" @@ -194,12 +195,18 @@ protected: /// Loads entity common data from the NBT compound; returns true if successful bool LoadEntityBaseFromNBT(cEntity & a_Entity, const cParsedNBT & a_NBT, int a_TagIdx); + /// Loads monster common data from the NBT compound; returns true if successful + bool LoadMonsterBaseFromNBT(cMonster & a_Monster, const cParsedNBT & a_NBT, int a_TagIdx); + /// Loads projectile common data from the NBT compound; returns true if successful bool LoadProjectileBaseFromNBT(cProjectileEntity & a_Entity, const cParsedNBT & a_NBT, int a_TagIx); /// Loads an array of doubles of the specified length from the specified NBT list tag a_TagIdx; returns true if successful bool LoadDoublesListFromNBT(double * a_Doubles, int a_NumDoubles, const cParsedNBT & a_NBT, int a_TagIdx); + /// Loads an array of floats of the specified length from the specified NBT list tag a_TagIdx; returns true if successful + bool LoadFloatsListFromNBT(float * a_Floats, int a_NumFloats, const cParsedNBT & a_NBT, int a_TagIdx); + /// Helper function for extracting the X, Y, and Z int subtags of a NBT compound; returns true if successful bool GetBlockEntityNBTPos(const cParsedNBT & a_NBT, int a_TagIdx, int & a_X, int & a_Y, int & a_Z); |