diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-01-30 17:01:45 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-01-30 17:01:45 +0100 |
commit | 51dc47bc70d66667ed1aee597d82dbdcfaf92fa1 (patch) | |
tree | 9e5fd39541516c0f8ced34b36f6e546bcd3886bb /source/cChestEntity.h | |
parent | Initial cFile implementation (using stdio FILE) and test in cChunkMap (diff) | |
download | cuberite-51dc47bc70d66667ed1aee597d82dbdcfaf92fa1.tar cuberite-51dc47bc70d66667ed1aee597d82dbdcfaf92fa1.tar.gz cuberite-51dc47bc70d66667ed1aee597d82dbdcfaf92fa1.tar.bz2 cuberite-51dc47bc70d66667ed1aee597d82dbdcfaf92fa1.tar.lz cuberite-51dc47bc70d66667ed1aee597d82dbdcfaf92fa1.tar.xz cuberite-51dc47bc70d66667ed1aee597d82dbdcfaf92fa1.tar.zst cuberite-51dc47bc70d66667ed1aee597d82dbdcfaf92fa1.zip |
Diffstat (limited to 'source/cChestEntity.h')
-rw-r--r-- | source/cChestEntity.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source/cChestEntity.h b/source/cChestEntity.h index 60d93b049..6082b6a52 100644 --- a/source/cChestEntity.h +++ b/source/cChestEntity.h @@ -17,7 +17,7 @@ class cNBTData; class cChestEntity : public cBlockEntity, public cWindowOwner
{
public:
- cChestEntity(int a_X, int a_Y, int a_Z, cChunk* a_Chunk);
+ cChestEntity(int a_X, int a_Y, int a_Z, cChunk * a_Chunk);
virtual ~cChestEntity();
virtual void Destroy();
@@ -26,8 +26,7 @@ public: cItem * GetSlot( int a_Slot );
void SetSlot( int a_Slot, cItem & a_Item );
- void WriteToFile(FILE* a_File);
- bool LoadFromFile(FILE* a_File);
+ bool LoadFromFile(cFile & a_File); // deprecated format
bool LoadFromJson( const Json::Value& a_Value );
void SaveToJson( Json::Value& a_Value );
|