From c7b0c8e0286a1b2bb7ec55e579137dfc3b22eeb9 Mon Sep 17 00:00:00 2001 From: untodesu Date: Mon, 30 Jun 2025 23:39:41 +0500 Subject: Nuke core/macros.hh --- src/game/shared/ray_dda.hh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/game/shared/ray_dda.hh') diff --git a/src/game/shared/ray_dda.hh b/src/game/shared/ray_dda.hh index 504fa7b..5cc0005 100644 --- a/src/game/shared/ray_dda.hh +++ b/src/game/shared/ray_dda.hh @@ -2,15 +2,13 @@ #define SHARED_RAY_DDA 1 #pragma once -#include "core/macros.hh" - #include "shared/types.hh" class Dimension; class RayDDA final { public: - DECLARE_DEFAULT_CONSTRUCTOR(RayDDA); + RayDDA(void) = default; 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