From 3b5fab8849f9a7cd3fa6469d3bec04b78784b3ff Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 29 Jun 2025 12:04:58 +0500 Subject: Update core/macros.hh --- game/shared/feature.hh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'game/shared/feature.hh') 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> { public: - explicit Feature(void) = default; + DECLARE_DEFAULT_CONSTRUCTOR(Feature); virtual ~Feature(void) = default; public: -- cgit