replace include guards with pragma once

This commit is contained in:
MihailRis
2024-08-10 01:57:59 +03:00
parent f43cc93cd2
commit de5c75d782
164 changed files with 166 additions and 656 deletions
+1 -4
View File
@@ -1,5 +1,4 @@
#ifndef VOXELS_CHUNKSSTORAGE_HPP_
#define VOXELS_CHUNKSSTORAGE_HPP_
#pragma once
#include <memory>
#include <unordered_map>
@@ -27,5 +26,3 @@ public:
void getVoxels(VoxelsVolume* volume, bool backlight = false) const;
std::shared_ptr<Chunk> create(int x, int z);
};
#endif // VOXELS_CHUNKSSTORAGE_HPP_