From 79b60f5ea17209ca9c48b7f92629577ef1948de7 Mon Sep 17 00:00:00 2001 From: kj16609 Date: Wed, 14 Aug 2024 15:03:19 -0400 Subject: [PATCH] Replaces old ifdef with pragma once --- src/engine/systems/TerrainSystem.hpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/engine/systems/TerrainSystem.hpp b/src/engine/systems/TerrainSystem.hpp index 89edd60..d27ac9f 100644 --- a/src/engine/systems/TerrainSystem.hpp +++ b/src/engine/systems/TerrainSystem.hpp @@ -2,8 +2,7 @@ // Created by kj16609 on 3/11/24. // -#ifndef GAME_TERRAINSYSTEM_HPP -#define GAME_TERRAINSYSTEM_HPP +#pragma once #include "concepts.hpp" #include "engine/FrameInfo.hpp" @@ -80,5 +79,3 @@ namespace fgl::engine */ } // namespace fgl::engine - -#endif //GAME_TERRAINSYSTEM_HPP