aboutsummaryrefslogtreecommitdiff
path: root/src/maze.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-01-24 22:40:42 +0100
committerHampusM <hampus@hampusmat.com>2022-01-24 22:40:42 +0100
commit2fbe2c72979e1470c85b8ff631e42e0594bd523c (patch)
tree9a48f099d8f9698a92eb8296e396315449517249 /src/maze.hpp
parent9f685c302a52f0801ca2f03fc03db3cae61ad3e9 (diff)
refactor: use #pragma once
Diffstat (limited to 'src/maze.hpp')
-rw-r--r--src/maze.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/maze.hpp b/src/maze.hpp
index 0ff1d06..106e347 100644
--- a/src/maze.hpp
+++ b/src/maze.hpp
@@ -1,5 +1,4 @@
-#ifndef MAZE_HPP
-#define MAZE_HPP
+#pragma once
#include "matrix.hpp"
#include "vector2.hpp"
@@ -21,4 +20,3 @@ void matrix_to_maze(Matrix<Element> *matrix, std::shared_ptr<Vector2> start_pos,
#include "maze.tpp"
-#endif