summaryrefslogtreecommitdiffstats
path: root/game/shared/ray_dda.hh
diff options
context:
space:
mode:
Diffstat (limited to 'game/shared/ray_dda.hh')
-rw-r--r--game/shared/ray_dda.hh4
1 files changed, 3 insertions, 1 deletions
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);