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/ray_dda.hh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'game/shared/ray_dda.hh') diff --git a/game/shared/ray_dda.hh b/game/shared/ray_dda.hh index 5378680..91eb462 100644 --- a/game/shared/ray_dda.hh +++ b/game/shared/ray_dda.hh @@ -2,13 +2,15 @@ #define SHARED_RAY_DDA 1 #pragma once +#include "core/macros.hh" + #include "shared/types.hh" class Dimension; class RayDDA final { public: - explicit RayDDA(void) = default; + DECLARE_DEFAULT_CONSTRUCTOR(RayDDA); explicit RayDDA(const Dimension* dimension, const chunk_pos& start_chunk, const glm::fvec3& start_fpos, const glm::fvec3& direction); explicit RayDDA(const Dimension& dimension, const chunk_pos& start_chunk, const glm::fvec3& start_fpos, const glm::fvec3& direction); -- cgit