Reference counting for Chunk | changed ChunksLoader

This commit is contained in:
MihailRis
2022-02-28 03:56:02 +03:00
committed by GitHub
parent bc9d29cf68
commit 4651ab776b
4 changed files with 18 additions and 12 deletions
+3
View File
@@ -18,12 +18,15 @@ public:
bool ready = false;
bool accepted = false;
bool generated = false;
int references = 1;
Chunk(int x, int y, int z);
~Chunk();
bool isEmpty();
Chunk* clone() const;
void incref();
void decref();
};
#endif /* VOXELS_CHUNK_H_ */