diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-07 11:45:30 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-07 11:45:30 +0100 |
commit | fe7e07d69d3227d6e5cfbeefd88b47b3f5961184 (patch) | |
tree | 1e0b8b33b1b195ad3b90b6c6e81d00240be57291 /source/BlockArea.h | |
parent | cBlockArea can now be saved as a .schematic file. (diff) | |
download | cuberite-fe7e07d69d3227d6e5cfbeefd88b47b3f5961184.tar cuberite-fe7e07d69d3227d6e5cfbeefd88b47b3f5961184.tar.gz cuberite-fe7e07d69d3227d6e5cfbeefd88b47b3f5961184.tar.bz2 cuberite-fe7e07d69d3227d6e5cfbeefd88b47b3f5961184.tar.lz cuberite-fe7e07d69d3227d6e5cfbeefd88b47b3f5961184.tar.xz cuberite-fe7e07d69d3227d6e5cfbeefd88b47b3f5961184.tar.zst cuberite-fe7e07d69d3227d6e5cfbeefd88b47b3f5961184.zip |
Diffstat (limited to '')
-rw-r--r-- | source/BlockArea.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/BlockArea.h b/source/BlockArea.h index 2c4a9e3ba..ace596be6 100644 --- a/source/BlockArea.h +++ b/source/BlockArea.h @@ -56,6 +56,12 @@ public: /// Writes the area back into cWorld at the coords specified. Returns true if successful in all chunks, false if only partially / not at all
bool Write(cWorld * a_World, int a_MinBlockX, int a_MinBlockY, int a_MinBlockZ, int a_DataTypes = baTypes | baMetas);
+ /// Copies this object's contents into the specified BlockArea.
+ void CopyTo(cBlockArea & a_Into) const;
+
+ /// Copies the contents from the specified BlockArea into this object.
+ void CopyFrom(const cBlockArea & a_From);
+
/// For testing purposes only, dumps the area into a file.
void DumpToRawFile(const AString & a_FileName);
|