Skip to content

Commit fa8ccab

Browse files
committed
Include path restructure
1 parent 2c83033 commit fa8ccab

File tree

6 files changed

+9
-11
lines changed

6 files changed

+9
-11
lines changed

demo/Main.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
///
66
/// SPDX-License-Identifier: GPL-3.0-or-later
77
///
8-
#include <Langulus.hpp>
98
#include <Langulus/Input.hpp>
10-
#include <Flow/Time.hpp>
9+
#include <Langulus/Flow/Time.hpp>
1110
#include <thread>
1211

1312
LANGULUS_RTTI_BOUNDARY(RTTI::MainBoundary)

source/Common.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
/// SPDX-License-Identifier: GPL-3.0-or-later
77
///
88
#pragma once
9-
#include <Langulus.hpp>
109
#include <Langulus/Input.hpp>
11-
#include <Math/Vector.hpp>
10+
#include <Langulus/Math/Vector.hpp>
1211

1312
using namespace Langulus;
1413

source/InputGatherer.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
///
88
#pragma once
99
#include "InputListener.hpp"
10-
#include <Flow/Verbs/Create.hpp>
11-
#include <Flow/Verbs/Interact.hpp>
10+
#include <Langulus/Verbs/Create.hpp>
11+
#include <Langulus/Verbs/Interact.hpp>
1212

1313

1414
///

source/InputListener.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
///
88
#pragma once
99
#include "Common.hpp"
10-
#include <Flow/Factory.hpp>
11-
#include <Flow/Time.hpp>
12-
#include <Flow/Verbs/Create.hpp>
10+
#include <Langulus/Flow/Factory.hpp>
11+
#include <Langulus/Flow/Time.hpp>
12+
#include <Langulus/Verbs/Create.hpp>
1313

1414
struct Anticipator;
1515

source/InputSDL.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
///
88
#pragma once
99
#include "InputGatherer.hpp"
10-
#include <Flow/Verbs/Create.hpp>
10+
#include <Langulus/Verbs/Create.hpp>
1111

1212

1313
///

test/Main.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/// SPDX-License-Identifier: GPL-3.0-or-later
77
///
88
#pragma once
9-
#include <Langulus.hpp>
9+
#include <Langulus/Entity/Thing.hpp>
1010

1111
using namespace Langulus;
1212

0 commit comments

Comments
 (0)