Replace #include <NDK/ by #include <NazaraSDK/
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
#include <Nazara/Graphics/ColorBackground.hpp>
|
||||
#include <Nazara/Renderer/RenderWindow.hpp>
|
||||
|
||||
#include <NDK/Application.hpp>
|
||||
#include <NDK/StateMachine.hpp>
|
||||
#include <NDK/World.hpp>
|
||||
#include <NDK/Components/CameraComponent.hpp>
|
||||
#include <NDK/Components/NodeComponent.hpp>
|
||||
#include <NDK/Systems/RenderSystem.hpp>
|
||||
#include <NazaraSDK/Application.hpp>
|
||||
#include <NazaraSDK/StateMachine.hpp>
|
||||
#include <NazaraSDK/World.hpp>
|
||||
#include <NazaraSDK/Components/CameraComponent.hpp>
|
||||
#include <NazaraSDK/Components/NodeComponent.hpp>
|
||||
#include <NazaraSDK/Systems/RenderSystem.hpp>
|
||||
|
||||
#include "EventHandler/StateContext.hpp"
|
||||
#include "EventHandler/StateFactory.hpp"
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include "StateFactory.hpp"
|
||||
|
||||
#include <Nazara/Renderer/RenderWindow.hpp>
|
||||
#include <NDK/StateMachine.hpp>
|
||||
#include <NazaraSDK/StateMachine.hpp>
|
||||
|
||||
BaseState::BaseState(StateContext& context) :
|
||||
State(),
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
#include <Nazara/Platform/EventHandler.hpp>
|
||||
|
||||
#include <NDK/State.hpp>
|
||||
#include <NazaraSDK/State.hpp>
|
||||
|
||||
class StateContext;
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include "StateFactory.hpp"
|
||||
|
||||
#include <Nazara/Renderer/RenderWindow.hpp>
|
||||
#include <NDK/StateMachine.hpp>
|
||||
#include <NazaraSDK/StateMachine.hpp>
|
||||
|
||||
EventState::EventState(StateContext& context) :
|
||||
BaseState(context),
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include "StateFactory.hpp"
|
||||
|
||||
#include <Nazara/Renderer/RenderWindow.hpp>
|
||||
#include <NDK/StateMachine.hpp>
|
||||
#include <NazaraSDK/StateMachine.hpp>
|
||||
|
||||
FocusState::FocusState(StateContext& context) :
|
||||
BaseState(context)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include "StateFactory.hpp"
|
||||
|
||||
#include <Nazara/Renderer/RenderWindow.hpp>
|
||||
#include <NDK/StateMachine.hpp>
|
||||
#include <NazaraSDK/StateMachine.hpp>
|
||||
|
||||
KeyState::KeyState(StateContext& context) :
|
||||
BaseState(context),
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include "StateFactory.hpp"
|
||||
|
||||
#include <Nazara/Renderer/RenderWindow.hpp>
|
||||
#include <NDK/StateMachine.hpp>
|
||||
#include <NazaraSDK/StateMachine.hpp>
|
||||
|
||||
MenuState::MenuState(StateContext& context) :
|
||||
BaseState(context),
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include "StateFactory.hpp"
|
||||
|
||||
#include <Nazara/Renderer/RenderWindow.hpp>
|
||||
#include <NDK/StateMachine.hpp>
|
||||
#include <NazaraSDK/StateMachine.hpp>
|
||||
|
||||
MouseClickState::MouseClickState(StateContext& context) :
|
||||
BaseState(context)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include "StateFactory.hpp"
|
||||
|
||||
#include <Nazara/Renderer/RenderWindow.hpp>
|
||||
#include <NDK/StateMachine.hpp>
|
||||
#include <NazaraSDK/StateMachine.hpp>
|
||||
|
||||
MouseEnterState::MouseEnterState(StateContext& context) :
|
||||
BaseState(context)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include "StateFactory.hpp"
|
||||
|
||||
#include <Nazara/Renderer/RenderWindow.hpp>
|
||||
#include <NDK/StateMachine.hpp>
|
||||
#include <NazaraSDK/StateMachine.hpp>
|
||||
|
||||
MouseMoveState::MouseMoveState(StateContext& context) :
|
||||
BaseState(context)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef __STATEFACTORY_HPP__
|
||||
#define __STATEFACTORY_HPP__
|
||||
|
||||
#include <NDK/State.hpp>
|
||||
#include <NazaraSDK/State.hpp>
|
||||
|
||||
#include <map>
|
||||
#include <memory>
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
|
||||
#include <Nazara/Renderer/RenderWindow.hpp>
|
||||
#include <Nazara/Utility/SimpleTextDrawer.hpp>
|
||||
#include <NDK/StateMachine.hpp>
|
||||
#include <NDK/World.hpp>
|
||||
#include <NDK/Components/GraphicsComponent.hpp>
|
||||
#include <NDK/Components/NodeComponent.hpp>
|
||||
#include <NazaraSDK/StateMachine.hpp>
|
||||
#include <NazaraSDK/World.hpp>
|
||||
#include <NazaraSDK/Components/GraphicsComponent.hpp>
|
||||
#include <NazaraSDK/Components/NodeComponent.hpp>
|
||||
|
||||
Text::Text(StateContext& stateContext) :
|
||||
m_context(stateContext)
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
#define __TEXT_HPP__
|
||||
|
||||
#include <Nazara/Graphics/TextSprite.hpp>
|
||||
#include <NDK/Entity.hpp>
|
||||
#include <NazaraSDK/Entity.hpp>
|
||||
#include "StateContext.hpp"
|
||||
|
||||
class Text
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include "StateFactory.hpp"
|
||||
|
||||
#include <Nazara/Renderer/RenderWindow.hpp>
|
||||
#include <NDK/StateMachine.hpp>
|
||||
#include <NazaraSDK/StateMachine.hpp>
|
||||
|
||||
TextEnterState::TextEnterState(StateContext& context) :
|
||||
BaseState(context)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include "StateFactory.hpp"
|
||||
|
||||
#include <Nazara/Renderer/RenderWindow.hpp>
|
||||
#include <NDK/StateMachine.hpp>
|
||||
#include <NazaraSDK/StateMachine.hpp>
|
||||
|
||||
WindowModificationState::WindowModificationState(StateContext& context) :
|
||||
BaseState(context)
|
||||
|
||||
Reference in New Issue
Block a user