Replace #include <NDK/ by #include <NazaraSDK/

This commit is contained in:
Lynix
2020-02-24 17:57:46 +01:00
parent eb8800f812
commit 43ee75b75f
191 changed files with 469 additions and 469 deletions

View File

@@ -1,4 +1,4 @@
#include <NDK/Application.hpp>
#include <NazaraSDK/Application.hpp>
#include <Catch/catch.hpp>
SCENARIO("Application", "[NDK][APPLICATION]")

View File

@@ -1,7 +1,7 @@
#include <NDK/System.hpp>
#include <NDK/Components/NodeComponent.hpp>
#include <NDK/Components/VelocityComponent.hpp>
#include <NDK/World.hpp>
#include <NazaraSDK/System.hpp>
#include <NazaraSDK/Components/NodeComponent.hpp>
#include <NazaraSDK/Components/VelocityComponent.hpp>
#include <NazaraSDK/World.hpp>
#include <Catch/catch.hpp>
namespace

View File

@@ -1,4 +1,4 @@
#include <NDK/Component.hpp>
#include <NazaraSDK/Component.hpp>
#include <Catch/catch.hpp>
namespace

View File

@@ -1,5 +1,5 @@
#include <NDK/World.hpp>
#include <NDK/Component.hpp>
#include <NazaraSDK/World.hpp>
#include <NazaraSDK/Component.hpp>
#include <Catch/catch.hpp>
namespace

View File

@@ -1,5 +1,5 @@
#include <NDK/EntityList.hpp>
#include <NDK/World.hpp>
#include <NazaraSDK/EntityList.hpp>
#include <NazaraSDK/World.hpp>
#include <Catch/catch.hpp>
SCENARIO("EntityList", "[NDK][ENTITYLIST]")

View File

@@ -1,5 +1,5 @@
#include <NDK/EntityOwner.hpp>
#include <NDK/World.hpp>
#include <NazaraSDK/EntityOwner.hpp>
#include <NazaraSDK/World.hpp>
#include <Catch/catch.hpp>
SCENARIO("EntityOwner", "[NDK][ENTITYOWNER]")

View File

@@ -1,4 +1,4 @@
#include <NDK/StateMachine.hpp>
#include <NazaraSDK/StateMachine.hpp>
#include <Catch/catch.hpp>
class TestState : public Ndk::State

View File

@@ -1,4 +1,4 @@
#include <NDK/System.hpp>
#include <NazaraSDK/System.hpp>
#include <Catch/catch.hpp>
namespace

View File

@@ -1,8 +1,8 @@
#include <NDK/Systems/ListenerSystem.hpp>
#include <NDK/World.hpp>
#include <NDK/Components/ListenerComponent.hpp>
#include <NDK/Components/NodeComponent.hpp>
#include <NDK/Components/VelocityComponent.hpp>
#include <NazaraSDK/Systems/ListenerSystem.hpp>
#include <NazaraSDK/World.hpp>
#include <NazaraSDK/Components/ListenerComponent.hpp>
#include <NazaraSDK/Components/NodeComponent.hpp>
#include <NazaraSDK/Components/VelocityComponent.hpp>
#include <Nazara/Audio/Audio.hpp>
#include <Catch/catch.hpp>

View File

@@ -1,8 +1,8 @@
#include <NDK/Systems/PhysicsSystem2D.hpp>
#include <NDK/World.hpp>
#include <NDK/Components/CollisionComponent2D.hpp>
#include <NDK/Components/NodeComponent.hpp>
#include <NDK/Components/PhysicsComponent2D.hpp>
#include <NazaraSDK/Systems/PhysicsSystem2D.hpp>
#include <NazaraSDK/World.hpp>
#include <NazaraSDK/Components/CollisionComponent2D.hpp>
#include <NazaraSDK/Components/NodeComponent.hpp>
#include <NazaraSDK/Components/PhysicsComponent2D.hpp>
#include <Catch/catch.hpp>
#include <limits>

View File

@@ -1,8 +1,8 @@
#include <NDK/Systems/PhysicsSystem3D.hpp>
#include <NDK/World.hpp>
#include <NDK/Components/CollisionComponent3D.hpp>
#include <NDK/Components/NodeComponent.hpp>
#include <NDK/Components/PhysicsComponent3D.hpp>
#include <NazaraSDK/Systems/PhysicsSystem3D.hpp>
#include <NazaraSDK/World.hpp>
#include <NazaraSDK/Components/CollisionComponent3D.hpp>
#include <NazaraSDK/Components/NodeComponent.hpp>
#include <NazaraSDK/Components/PhysicsComponent3D.hpp>
#include <Catch/catch.hpp>
SCENARIO("PhysicsSystem3D", "[NDK][PHYSICSSYSTEM3D]")

View File

@@ -1,7 +1,7 @@
#include <NDK/Systems/RenderSystem.hpp>
#include <NDK/World.hpp>
#include <NDK/Components.hpp>
#include <NDK/Systems/PhysicsSystem2D.hpp>
#include <NazaraSDK/Systems/RenderSystem.hpp>
#include <NazaraSDK/World.hpp>
#include <NazaraSDK/Components.hpp>
#include <NazaraSDK/Systems/PhysicsSystem2D.hpp>
#include <Nazara/Graphics/ForwardRenderTechnique.hpp>
#include <Nazara/Graphics/Sprite.hpp>
#include <Catch/catch.hpp>

View File

@@ -1,7 +1,7 @@
#include <NDK/Systems/VelocitySystem.hpp>
#include <NDK/World.hpp>
#include <NDK/Components/NodeComponent.hpp>
#include <NDK/Components/VelocityComponent.hpp>
#include <NazaraSDK/Systems/VelocitySystem.hpp>
#include <NazaraSDK/World.hpp>
#include <NazaraSDK/Components/NodeComponent.hpp>
#include <NazaraSDK/Components/VelocityComponent.hpp>
#include <Catch/catch.hpp>
SCENARIO("VelocitySystem", "[NDK][VELOCITYSYSTEM]")

View File

@@ -1,5 +1,5 @@
#include <NDK/World.hpp>
#include <NDK/Component.hpp>
#include <NazaraSDK/World.hpp>
#include <NazaraSDK/Component.hpp>
#include <Catch/catch.hpp>
namespace