Skip to content

Commit

Permalink
Include path restructure
Browse files Browse the repository at this point in the history
  • Loading branch information
Epixu committed Jan 28, 2025
1 parent 2c83033 commit fa8ccab
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 11 deletions.
3 changes: 1 addition & 2 deletions demo/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
///
/// SPDX-License-Identifier: GPL-3.0-or-later
///
#include <Langulus.hpp>
#include <Langulus/Input.hpp>
#include <Flow/Time.hpp>
#include <Langulus/Flow/Time.hpp>
#include <thread>

LANGULUS_RTTI_BOUNDARY(RTTI::MainBoundary)
Expand Down
3 changes: 1 addition & 2 deletions source/Common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@
/// SPDX-License-Identifier: GPL-3.0-or-later
///
#pragma once
#include <Langulus.hpp>
#include <Langulus/Input.hpp>
#include <Math/Vector.hpp>
#include <Langulus/Math/Vector.hpp>

using namespace Langulus;

Expand Down
4 changes: 2 additions & 2 deletions source/InputGatherer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
///
#pragma once
#include "InputListener.hpp"
#include <Flow/Verbs/Create.hpp>
#include <Flow/Verbs/Interact.hpp>
#include <Langulus/Verbs/Create.hpp>
#include <Langulus/Verbs/Interact.hpp>


///
Expand Down
6 changes: 3 additions & 3 deletions source/InputListener.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
///
#pragma once
#include "Common.hpp"
#include <Flow/Factory.hpp>
#include <Flow/Time.hpp>
#include <Flow/Verbs/Create.hpp>
#include <Langulus/Flow/Factory.hpp>
#include <Langulus/Flow/Time.hpp>
#include <Langulus/Verbs/Create.hpp>

struct Anticipator;

Expand Down
2 changes: 1 addition & 1 deletion source/InputSDL.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
///
#pragma once
#include "InputGatherer.hpp"
#include <Flow/Verbs/Create.hpp>
#include <Langulus/Verbs/Create.hpp>


///
Expand Down
2 changes: 1 addition & 1 deletion test/Main.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/// SPDX-License-Identifier: GPL-3.0-or-later
///
#pragma once
#include <Langulus.hpp>
#include <Langulus/Entity/Thing.hpp>

using namespace Langulus;

Expand Down

0 comments on commit fa8ccab

Please sign in to comment.