summaryrefslogtreecommitdiffstats
path: root/game/shared/feature.hh
diff options
context:
space:
mode:
authoruntodesu <kirill@untode.su>2025-06-29 12:04:58 +0500
committeruntodesu <kirill@untode.su>2025-06-29 12:04:58 +0500
commit3b5fab8849f9a7cd3fa6469d3bec04b78784b3ff (patch)
tree96f806c80e7553b1b4f04cb7726945ad41de2366 /game/shared/feature.hh
parent61e5bcef2629e2d68b805a956a96fff264d4f74d (diff)
downloadvoxelius-3b5fab8849f9a7cd3fa6469d3bec04b78784b3ff.tar.bz2
voxelius-3b5fab8849f9a7cd3fa6469d3bec04b78784b3ff.zip
Update core/macros.hh
Diffstat (limited to 'game/shared/feature.hh')
-rw-r--r--game/shared/feature.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/game/shared/feature.hh b/game/shared/feature.hh
index 306841e..04f38e8 100644
--- a/game/shared/feature.hh
+++ b/game/shared/feature.hh
@@ -2,6 +2,8 @@
#define SHARED_FEATURE_HH 1
#pragma once
+#include "core/macros.hh"
+
#include "shared/types.hh"
class Dimension;
@@ -9,7 +11,7 @@ class VoxelStorage;
class Feature final : public std::vector<std::tuple<voxel_pos, voxel_id, bool>> {
public:
- explicit Feature(void) = default;
+ DECLARE_DEFAULT_CONSTRUCTOR(Feature);
virtual ~Feature(void) = default;
public: