diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-05-28 18:47:57 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-05-28 18:47:57 +0200 |
commit | 1a0bfd8d28c68d3ee60352ef67c58da946c43cea (patch) | |
tree | 821bb46846db0464a1ddbbfe4c60e335a375d33e /source/WSSAnvil.h | |
parent | Ice finisher generator; fixed snow on water. (diff) | |
download | cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.tar cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.tar.gz cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.tar.bz2 cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.tar.lz cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.tar.xz cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.tar.zst cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.zip |
Diffstat (limited to 'source/WSSAnvil.h')
-rw-r--r-- | source/WSSAnvil.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/source/WSSAnvil.h b/source/WSSAnvil.h index c9f08aeee..f8beea524 100644 --- a/source/WSSAnvil.h +++ b/source/WSSAnvil.h @@ -31,16 +31,6 @@ enum -// fwd: "NBT.h"
-class cNBTTag;
-class cNBTList;
-class cNBTCompound;
-class cNBTByteArray;
-
-
-
-
-
class cWSSAnvil :
public cWSSchema
{
@@ -118,7 +108,8 @@ protected: /// Loads the chunk's BlockEntities from NBT data (a_Tag is the Level\\TileEntities list tag; may be -1)
void LoadBlockEntitiesFromNBT(cBlockEntityList & a_BlockEntitites, const cParsedNBT & a_NBT, int a_Tag);
- void LoadChestFromNBT(cBlockEntityList & a_BlockEntities, const cParsedNBT & a_NBT, int a_TagIdx);
+ void LoadChestFromNBT (cBlockEntityList & a_BlockEntities, const cParsedNBT & a_NBT, int a_TagIdx);
+ void LoadFurnaceFromNBT(cBlockEntityList & a_BlockEntities, 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);
|