mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-03-04 17:23:33 +01:00
Change BlockType from struct to class
Fixes the -Wmismatched-tags compilation warning.
This commit is contained in:
parent
bc8e9c5cb3
commit
367078178f
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ namespace Resource {
|
|||
#define BLOCK_SPRUCE (1u << 4)
|
||||
#define BLOCK_WATER (1u << 5)
|
||||
|
||||
struct BlockType {
|
||||
class BlockType {
|
||||
private:
|
||||
static const std::unordered_map<std::string, BlockType> Types;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue