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,24 +0,0 @@
// This file was automatically generated
#pragma once
#ifndef NDK_COMPONENTS_GLOBAL_HPP
#define NDK_COMPONENTS_GLOBAL_HPP
#include <NDK/Components/CameraComponent.hpp>
#include <NDK/Components/CollisionComponent2D.hpp>
#include <NDK/Components/CollisionComponent3D.hpp>
#include <NDK/Components/ConstraintComponent2D.hpp>
#include <NDK/Components/DebugComponent.hpp>
#include <NDK/Components/GraphicsComponent.hpp>
#include <NDK/Components/LifetimeComponent.hpp>
#include <NDK/Components/LightComponent.hpp>
#include <NDK/Components/ListenerComponent.hpp>
#include <NDK/Components/NodeComponent.hpp>
#include <NDK/Components/ParticleEmitterComponent.hpp>
#include <NDK/Components/ParticleGroupComponent.hpp>
#include <NDK/Components/PhysicsComponent2D.hpp>
#include <NDK/Components/PhysicsComponent3D.hpp>
#include <NDK/Components/VelocityComponent.hpp>
#endif // NDK_COMPONENTS_GLOBAL_HPP

View File

@ -1,17 +0,0 @@
// This file was automatically generated
#pragma once
#ifndef NDK_SYSTEMS_GLOBAL_HPP
#define NDK_SYSTEMS_GLOBAL_HPP
#include <NDK/Systems/DebugSystem.hpp>
#include <NDK/Systems/LifetimeSystem.hpp>
#include <NDK/Systems/ListenerSystem.hpp>
#include <NDK/Systems/ParticleSystem.hpp>
#include <NDK/Systems/PhysicsSystem2D.hpp>
#include <NDK/Systems/PhysicsSystem3D.hpp>
#include <NDK/Systems/RenderSystem.hpp>
#include <NDK/Systems/VelocitySystem.hpp>
#endif // NDK_SYSTEMS_GLOBAL_HPP

View File

@ -1,20 +0,0 @@
// This file was automatically generated
#pragma once
#ifndef NDK_WIDGETS_GLOBAL_HPP
#define NDK_WIDGETS_GLOBAL_HPP
#include <NDK/Widgets/AbstractTextAreaWidget.hpp>
#include <NDK/Widgets/BoxLayout.hpp>
#include <NDK/Widgets/ButtonWidget.hpp>
#include <NDK/Widgets/CheckboxWidget.hpp>
#include <NDK/Widgets/Enums.hpp>
#include <NDK/Widgets/ImageWidget.hpp>
#include <NDK/Widgets/LabelWidget.hpp>
#include <NDK/Widgets/ProgressBarWidget.hpp>
#include <NDK/Widgets/RichTextAreaWidget.hpp>
#include <NDK/Widgets/ScrollAreaWidget.hpp>
#include <NDK/Widgets/TextAreaWidget.hpp>
#endif // NDK_WIDGETS_GLOBAL_HPP

View File

@ -7,7 +7,7 @@
#ifndef NDK_ALGORITHM_HPP #ifndef NDK_ALGORITHM_HPP
#define NDK_ALGORITHM_HPP #define NDK_ALGORITHM_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
namespace Ndk namespace Ndk
{ {
@ -20,6 +20,6 @@ namespace Ndk
template<typename SystemType, typename S> bool IsSystem(S& system); template<typename SystemType, typename S> bool IsSystem(S& system);
} }
#include <NDK/Algorithm.inl> #include <NazaraSDK/Algorithm.inl>
#endif // NDK_ALGORITHM_HPP #endif // NDK_ALGORITHM_HPP

View File

@ -7,16 +7,16 @@
#ifndef NDK_APPLICATION_HPP #ifndef NDK_APPLICATION_HPP
#define NDK_APPLICATION_HPP #define NDK_APPLICATION_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <NDK/World.hpp> #include <NazaraSDK/World.hpp>
#include <Nazara/Core/Clock.hpp> #include <Nazara/Core/Clock.hpp>
#include <map> #include <map>
#include <list> #include <list>
#include <set> #include <set>
#ifndef NDK_SERVER #ifndef NDK_SERVER
#include <NDK/Canvas.hpp> #include <NazaraSDK/Canvas.hpp>
#include <NDK/Console.hpp> #include <NazaraSDK/Console.hpp>
#include <Nazara/Core/Log.hpp> #include <Nazara/Core/Log.hpp>
#include <Nazara/Graphics/TextSprite.hpp> #include <Nazara/Graphics/TextSprite.hpp>
#include <Nazara/Renderer/RenderTarget.hpp> #include <Nazara/Renderer/RenderTarget.hpp>
@ -144,6 +144,6 @@ namespace Ndk
}; };
} }
#include <NDK/Application.inl> #include <NazaraSDK/Application.inl>
#endif // NDK_APPLICATION_HPP #endif // NDK_APPLICATION_HPP

View File

@ -3,7 +3,7 @@
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <Nazara/Core/ErrorFlags.hpp> #include <Nazara/Core/ErrorFlags.hpp>
#include <NDK/Sdk.hpp> #include <NazaraSDK/Sdk.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -7,7 +7,7 @@
#ifndef NDK_BASECOMPONENT_HPP #ifndef NDK_BASECOMPONENT_HPP
#define NDK_BASECOMPONENT_HPP #define NDK_BASECOMPONENT_HPP
#include <NDK/Entity.hpp> #include <NazaraSDK/Entity.hpp>
#include <functional> #include <functional>
#include <unordered_map> #include <unordered_map>
#include <vector> #include <vector>
@ -69,6 +69,6 @@ namespace Ndk
}; };
} }
#include <NDK/BaseComponent.inl> #include <NazaraSDK/BaseComponent.inl>
#endif // NDK_BASECOMPONENT_HPP #endif // NDK_BASECOMPONENT_HPP

View File

@ -8,7 +8,7 @@
#define NDK_BASESYSTEM_HPP #define NDK_BASESYSTEM_HPP
#include <Nazara/Core/Bitset.hpp> #include <Nazara/Core/Bitset.hpp>
#include <NDK/EntityList.hpp> #include <NazaraSDK/EntityList.hpp>
namespace Ndk namespace Ndk
{ {
@ -100,6 +100,6 @@ namespace Ndk
}; };
} }
#include <NDK/BaseSystem.inl> #include <NazaraSDK/BaseSystem.inl>
#endif // NDK_BASESYSTEM_HPP #endif // NDK_BASESYSTEM_HPP

View File

@ -7,10 +7,10 @@
#ifndef NDK_BASEWIDGET_HPP #ifndef NDK_BASEWIDGET_HPP
#define NDK_BASEWIDGET_HPP #define NDK_BASEWIDGET_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <NDK/Entity.hpp> #include <NazaraSDK/Entity.hpp>
#include <NDK/EntityOwner.hpp> #include <NazaraSDK/EntityOwner.hpp>
#include <NDK/World.hpp> #include <NazaraSDK/World.hpp>
#include <Nazara/Graphics/Sprite.hpp> #include <Nazara/Graphics/Sprite.hpp>
#include <Nazara/Platform/Event.hpp> #include <Nazara/Platform/Event.hpp>
#include <Nazara/Platform/Mouse.hpp> #include <Nazara/Platform/Mouse.hpp>
@ -170,6 +170,6 @@ namespace Ndk
}; };
} }
#include <NDK/BaseWidget.inl> #include <NazaraSDK/BaseWidget.inl>
#endif // NDK_BASEWIDGET_HPP #endif // NDK_BASEWIDGET_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/BaseWidget.hpp> #include <NazaraSDK/BaseWidget.hpp>
#include <Nazara/Core/Error.hpp> #include <Nazara/Core/Error.hpp>
#include <Nazara/Math/Algorithm.hpp> #include <Nazara/Math/Algorithm.hpp>
#include <limits> #include <limits>

View File

@ -7,8 +7,8 @@
#ifndef NDK_CANVAS_HPP #ifndef NDK_CANVAS_HPP
#define NDK_CANVAS_HPP #define NDK_CANVAS_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <NDK/BaseWidget.hpp> #include <NazaraSDK/BaseWidget.hpp>
#include <Nazara/Platform/CursorController.hpp> #include <Nazara/Platform/CursorController.hpp>
#include <Nazara/Platform/EventHandler.hpp> #include <Nazara/Platform/EventHandler.hpp>
@ -82,6 +82,6 @@ namespace Ndk
}; };
} }
#include <NDK/Canvas.inl> #include <NazaraSDK/Canvas.inl>
#endif // NDK_CANVAS_HPP #endif // NDK_CANVAS_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Canvas.hpp> #include <NazaraSDK/Canvas.hpp>
#include <Nazara/Platform/Cursor.hpp> #include <Nazara/Platform/Cursor.hpp>
namespace Ndk namespace Ndk

View File

@ -7,7 +7,7 @@
#ifndef NDK_COMPONENT_HPP #ifndef NDK_COMPONENT_HPP
#define NDK_COMPONENT_HPP #define NDK_COMPONENT_HPP
#include <NDK/BaseComponent.hpp> #include <NazaraSDK/BaseComponent.hpp>
namespace Ndk namespace Ndk
{ {
@ -27,6 +27,6 @@ namespace Ndk
}; };
} }
#include <NDK/Component.inl> #include <NazaraSDK/Component.inl>
#endif // NDK_COMPONENT_HPP #endif // NDK_COMPONENT_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Algorithm.hpp> #include <NazaraSDK/Algorithm.hpp>
#include <type_traits> #include <type_traits>
namespace Ndk namespace Ndk

View File

@ -0,0 +1,24 @@
// This file was automatically generated
#pragma once
#ifndef NDK_COMPONENTS_GLOBAL_HPP
#define NDK_COMPONENTS_GLOBAL_HPP
#include <NazaraSDK/Components/CameraComponent.hpp>
#include <NazaraSDK/Components/CollisionComponent2D.hpp>
#include <NazaraSDK/Components/CollisionComponent3D.hpp>
#include <NazaraSDK/Components/ConstraintComponent2D.hpp>
#include <NazaraSDK/Components/DebugComponent.hpp>
#include <NazaraSDK/Components/GraphicsComponent.hpp>
#include <NazaraSDK/Components/LifetimeComponent.hpp>
#include <NazaraSDK/Components/LightComponent.hpp>
#include <NazaraSDK/Components/ListenerComponent.hpp>
#include <NazaraSDK/Components/NodeComponent.hpp>
#include <NazaraSDK/Components/ParticleEmitterComponent.hpp>
#include <NazaraSDK/Components/ParticleGroupComponent.hpp>
#include <NazaraSDK/Components/PhysicsComponent2D.hpp>
#include <NazaraSDK/Components/PhysicsComponent3D.hpp>
#include <NazaraSDK/Components/VelocityComponent.hpp>
#endif // NDK_COMPONENTS_GLOBAL_HPP

View File

@ -14,7 +14,7 @@
#include <Nazara/Graphics/AbstractViewer.hpp> #include <Nazara/Graphics/AbstractViewer.hpp>
#include <Nazara/Renderer/RenderTarget.hpp> #include <Nazara/Renderer/RenderTarget.hpp>
#include <Nazara/Utility/Node.hpp> #include <Nazara/Utility/Node.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
namespace Ndk namespace Ndk
{ {
@ -114,7 +114,7 @@ namespace Ndk
}; };
} }
#include <NDK/Components/CameraComponent.inl> #include <NazaraSDK/Components/CameraComponent.inl>
#endif // NDK_COMPONENTS_CAMERACOMPONENT_HPP #endif // NDK_COMPONENTS_CAMERACOMPONENT_HPP
#endif // NDK_SERVER #endif // NDK_SERVER

View File

@ -9,7 +9,7 @@
#include <Nazara/Physics2D/Collider2D.hpp> #include <Nazara/Physics2D/Collider2D.hpp>
#include <Nazara/Physics2D/RigidBody2D.hpp> #include <Nazara/Physics2D/RigidBody2D.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
#include <memory> #include <memory>
namespace Ndk namespace Ndk
@ -61,6 +61,6 @@ namespace Ndk
}; };
} }
#include <NDK/Components/CollisionComponent2D.inl> #include <NazaraSDK/Components/CollisionComponent2D.inl>
#endif // NDK_COMPONENTS_COLLISIONCOMPONENT2D_HPP #endif // NDK_COMPONENTS_COLLISIONCOMPONENT2D_HPP

View File

@ -9,7 +9,7 @@
#include <Nazara/Physics3D/Collider3D.hpp> #include <Nazara/Physics3D/Collider3D.hpp>
#include <Nazara/Physics3D/RigidBody3D.hpp> #include <Nazara/Physics3D/RigidBody3D.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
#include <memory> #include <memory>
namespace Ndk namespace Ndk
@ -53,6 +53,6 @@ namespace Ndk
}; };
} }
#include <NDK/Components/CollisionComponent3D.inl> #include <NazaraSDK/Components/CollisionComponent3D.inl>
#endif // NDK_COMPONENTS_COLLISIONCOMPONENT3D_HPP #endif // NDK_COMPONENTS_COLLISIONCOMPONENT3D_HPP

View File

@ -9,8 +9,8 @@
#include <Nazara/Physics2D/Constraint2D.hpp> #include <Nazara/Physics2D/Constraint2D.hpp>
#include <Nazara/Math/Vector3.hpp> #include <Nazara/Math/Vector3.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
#include <NDK/Entity.hpp> #include <NazaraSDK/Entity.hpp>
#include <memory> #include <memory>
#include <vector> #include <vector>
@ -46,6 +46,6 @@ namespace Ndk
} }
#include <NDK/Components/ConstraintComponent2D.inl> #include <NazaraSDK/Components/ConstraintComponent2D.inl>
#endif// NDK_COMPONENTS_CONSTRAINTCOMPONENT2D_HPP #endif// NDK_COMPONENTS_CONSTRAINTCOMPONENT2D_HPP

View File

@ -2,9 +2,9 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Components/ConstraintComponent2D.hpp> #include <NazaraSDK/Components/ConstraintComponent2D.hpp>
#include <NDK/Components/PhysicsComponent2D.hpp> #include <NazaraSDK/Components/PhysicsComponent2D.hpp>
#include <NDK/Components/CollisionComponent2D.hpp> #include <NazaraSDK/Components/CollisionComponent2D.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -10,7 +10,7 @@
#include <Nazara/Core/Flags.hpp> #include <Nazara/Core/Flags.hpp>
#include <Nazara/Graphics/InstancedRenderable.hpp> #include <Nazara/Graphics/InstancedRenderable.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
namespace Ndk namespace Ndk
{ {
@ -85,7 +85,7 @@ namespace Ndk
}; };
} }
#include <NDK/Components/DebugComponent.inl> #include <NazaraSDK/Components/DebugComponent.inl>
#endif // NDK_COMPONENTS_DEBUGCOMPONENT_HPP #endif // NDK_COMPONENTS_DEBUGCOMPONENT_HPP
#endif // NDK_SERVER #endif // NDK_SERVER

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Components/DebugComponent.hpp> #include <NazaraSDK/Components/DebugComponent.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -12,7 +12,7 @@
#include <Nazara/Graphics/InstancedRenderable.hpp> #include <Nazara/Graphics/InstancedRenderable.hpp>
#include <Nazara/Math/Frustum.hpp> #include <Nazara/Math/Frustum.hpp>
#include <Nazara/Utility/Node.hpp> #include <Nazara/Utility/Node.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
#include <unordered_map> #include <unordered_map>
namespace Ndk namespace Ndk
@ -164,7 +164,7 @@ namespace Ndk
}; };
} }
#include <NDK/Components/GraphicsComponent.inl> #include <NazaraSDK/Components/GraphicsComponent.inl>
#endif // NDK_COMPONENTS_GRAPHICSCOMPONENT_HPP #endif // NDK_COMPONENTS_GRAPHICSCOMPONENT_HPP
#endif // NDK_SERVER #endif // NDK_SERVER

View File

@ -2,9 +2,9 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Components/GraphicsComponent.hpp> #include <NazaraSDK/Components/GraphicsComponent.hpp>
#include <NDK/World.hpp> #include <NazaraSDK/World.hpp>
#include <NDK/Systems/RenderSystem.hpp> #include <NazaraSDK/Systems/RenderSystem.hpp>
#include <algorithm> #include <algorithm>
namespace Ndk namespace Ndk

View File

@ -7,7 +7,7 @@
#ifndef NDK_COMPONENTS_LIFETIMECOMPONENT_HPP #ifndef NDK_COMPONENTS_LIFETIMECOMPONENT_HPP
#define NDK_COMPONENTS_LIFETIMECOMPONENT_HPP #define NDK_COMPONENTS_LIFETIMECOMPONENT_HPP
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
namespace Ndk namespace Ndk
{ {
@ -35,6 +35,6 @@ namespace Ndk
}; };
} }
#include <NDK/Components/LifetimeComponent.inl> #include <NazaraSDK/Components/LifetimeComponent.inl>
#endif // NDK_COMPONENTS_LIFETIMECOMPONENT_HPP #endif // NDK_COMPONENTS_LIFETIMECOMPONENT_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Components/LifetimeComponent.hpp> #include <NazaraSDK/Components/LifetimeComponent.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -9,7 +9,7 @@
#define NDK_COMPONENTS_LIGHTCOMPONENT_HPP #define NDK_COMPONENTS_LIGHTCOMPONENT_HPP
#include <Nazara/Graphics/Light.hpp> #include <Nazara/Graphics/Light.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
namespace Ndk namespace Ndk
{ {
@ -30,7 +30,7 @@ namespace Ndk
}; };
} }
#include <NDK/Components/LightComponent.inl> #include <NazaraSDK/Components/LightComponent.inl>
#endif // NDK_COMPONENTS_LIGHTCOMPONENT_HPP #endif // NDK_COMPONENTS_LIGHTCOMPONENT_HPP
#endif // NDK_SERVER #endif // NDK_SERVER

View File

@ -8,7 +8,7 @@
#ifndef NDK_COMPONENTS_LISTENERCOMPONENT_HPP #ifndef NDK_COMPONENTS_LISTENERCOMPONENT_HPP
#define NDK_COMPONENTS_LISTENERCOMPONENT_HPP #define NDK_COMPONENTS_LISTENERCOMPONENT_HPP
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
namespace Ndk namespace Ndk
{ {
@ -32,7 +32,7 @@ namespace Ndk
}; };
} }
#include <NDK/Components/ListenerComponent.inl> #include <NazaraSDK/Components/ListenerComponent.inl>
#endif // NDK_COMPONENTS_LISTENERCOMPONENT_HPP #endif // NDK_COMPONENTS_LISTENERCOMPONENT_HPP
#endif // NDK_SERVER #endif // NDK_SERVER

View File

@ -8,7 +8,7 @@
#define NDK_COMPONENTS_NODECOMPONENT_HPP #define NDK_COMPONENTS_NODECOMPONENT_HPP
#include <Nazara/Utility/Node.hpp> #include <Nazara/Utility/Node.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
namespace Ndk namespace Ndk
{ {
@ -30,6 +30,6 @@ namespace Ndk
}; };
} }
#include <NDK/Components/NodeComponent.inl> #include <NazaraSDK/Components/NodeComponent.inl>
#endif // NDK_COMPONENTS_NODECOMPONENT_HPP #endif // NDK_COMPONENTS_NODECOMPONENT_HPP

View File

@ -3,7 +3,7 @@
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <Nazara/Core/Error.hpp> #include <Nazara/Core/Error.hpp>
#include <NDK/Entity.hpp> #include <NazaraSDK/Entity.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -9,7 +9,7 @@
#define NDK_COMPONENTS_PARTICLEEMITTERCOMPONENT_HPP #define NDK_COMPONENTS_PARTICLEEMITTERCOMPONENT_HPP
#include <Nazara/Graphics/ParticleEmitter.hpp> #include <Nazara/Graphics/ParticleEmitter.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
namespace Ndk namespace Ndk
{ {
@ -43,7 +43,7 @@ namespace Ndk
}; };
} }
#include <NDK/Components/ParticleEmitterComponent.inl> #include <NazaraSDK/Components/ParticleEmitterComponent.inl>
#endif // NDK_COMPONENTS_PARTICLEEMITTERCOMPONENT_HPP #endif // NDK_COMPONENTS_PARTICLEEMITTERCOMPONENT_HPP
#endif // NDK_SERVER #endif // NDK_SERVER

View File

@ -9,7 +9,7 @@
#define NDK_COMPONENTS_PARTICLEGROUPCOMPONENT_HPP #define NDK_COMPONENTS_PARTICLEGROUPCOMPONENT_HPP
#include <Nazara/Graphics/ParticleGroup.hpp> #include <Nazara/Graphics/ParticleGroup.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
namespace Ndk namespace Ndk
{ {
@ -35,7 +35,7 @@ namespace Ndk
}; };
} }
#include <NDK/Components/ParticleGroupComponent.inl> #include <NazaraSDK/Components/ParticleGroupComponent.inl>
#endif // NDK_COMPONENTS_PARTICLEGROUPCOMPONENT_HPP #endif // NDK_COMPONENTS_PARTICLEGROUPCOMPONENT_HPP
#endif // NDK_SERVER #endif // NDK_SERVER

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Components/ParticleEmitterComponent.hpp> #include <NazaraSDK/Components/ParticleEmitterComponent.hpp>
#include <Nazara/Core/Error.hpp> #include <Nazara/Core/Error.hpp>
namespace Ndk namespace Ndk

View File

@ -8,7 +8,7 @@
#define NDK_COMPONENTS_PHYSICSCOMPONENT2D_HPP #define NDK_COMPONENTS_PHYSICSCOMPONENT2D_HPP
#include <Nazara/Physics2D/RigidBody2D.hpp> #include <Nazara/Physics2D/RigidBody2D.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
#include <memory> #include <memory>
namespace Ndk namespace Ndk
@ -125,6 +125,6 @@ namespace Ndk
}; };
} }
#include <NDK/Components/PhysicsComponent2D.inl> #include <NazaraSDK/Components/PhysicsComponent2D.inl>
#endif // NDK_COMPONENTS_PHYSICSCOMPONENT2D_HPP #endif // NDK_COMPONENTS_PHYSICSCOMPONENT2D_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Components/PhysicsComponent2D.hpp> #include <NazaraSDK/Components/PhysicsComponent2D.hpp>
#include <Nazara/Core/Error.hpp> #include <Nazara/Core/Error.hpp>
namespace Ndk namespace Ndk

View File

@ -8,7 +8,7 @@
#define NDK_COMPONENTS_PHYSICSCOMPONENT3D_HPP #define NDK_COMPONENTS_PHYSICSCOMPONENT3D_HPP
#include <Nazara/Physics3D/RigidBody3D.hpp> #include <Nazara/Physics3D/RigidBody3D.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
#include <memory> #include <memory>
namespace Ndk namespace Ndk
@ -96,6 +96,6 @@ namespace Ndk
}; };
} }
#include <NDK/Components/PhysicsComponent3D.inl> #include <NazaraSDK/Components/PhysicsComponent3D.inl>
#endif // NDK_COMPONENTS_PHYSICSCOMPONENT3D_HPP #endif // NDK_COMPONENTS_PHYSICSCOMPONENT3D_HPP

View File

@ -8,7 +8,7 @@
#define NDK_COMPONENTS_VELOCITYCOMPONENT_HPP #define NDK_COMPONENTS_VELOCITYCOMPONENT_HPP
#include <Nazara/Math/Vector3.hpp> #include <Nazara/Math/Vector3.hpp>
#include <NDK/Component.hpp> #include <NazaraSDK/Component.hpp>
namespace Ndk namespace Ndk
{ {
@ -31,6 +31,6 @@ namespace Ndk
}; };
} }
#include <NDK/Components/VelocityComponent.inl> #include <NazaraSDK/Components/VelocityComponent.inl>
#endif // NDK_COMPONENTS_VELOCITYCOMPONENT_HPP #endif // NDK_COMPONENTS_VELOCITYCOMPONENT_HPP

View File

@ -14,8 +14,8 @@
#include <Nazara/Graphics/TextSprite.hpp> #include <Nazara/Graphics/TextSprite.hpp>
#include <Nazara/Utility/Node.hpp> #include <Nazara/Utility/Node.hpp>
#include <Nazara/Utility/SimpleTextDrawer.hpp> #include <Nazara/Utility/SimpleTextDrawer.hpp>
#include <NDK/BaseWidget.hpp> #include <NazaraSDK/BaseWidget.hpp>
#include <NDK/EntityOwner.hpp> #include <NazaraSDK/EntityOwner.hpp>
namespace Nz namespace Nz
{ {
@ -82,7 +82,7 @@ namespace Ndk
}; };
} }
#include <NDK/Console.inl> #include <NazaraSDK/Console.inl>
#endif // NDK_CONSOLE_HPP #endif // NDK_CONSOLE_HPP
#endif // NDK_SERVER #endif // NDK_SERVER

View File

@ -11,8 +11,8 @@
#include <Nazara/Core/MovablePtr.hpp> #include <Nazara/Core/MovablePtr.hpp>
#include <Nazara/Core/ObjectHandle.hpp> #include <Nazara/Core/ObjectHandle.hpp>
#include <Nazara/Core/Signal.hpp> #include <Nazara/Core/Signal.hpp>
#include <NDK/Algorithm.hpp> #include <NazaraSDK/Algorithm.hpp>
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <memory> #include <memory>
#include <vector> #include <vector>
@ -109,6 +109,6 @@ namespace Ndk
}; };
} }
#include <NDK/Entity.inl> #include <NazaraSDK/Entity.inl>
#endif // NDK_ENTITY_HPP #endif // NDK_ENTITY_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Entity.hpp> #include <NazaraSDK/Entity.hpp>
#include <Nazara/Core/Error.hpp> #include <Nazara/Core/Error.hpp>
#include <Nazara/Core/StringStream.hpp> #include <Nazara/Core/StringStream.hpp>
#include <algorithm> #include <algorithm>

View File

@ -8,8 +8,8 @@
#define NDK_ENTITYLIST_HPP #define NDK_ENTITYLIST_HPP
#include <Nazara/Core/Bitset.hpp> #include <Nazara/Core/Bitset.hpp>
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <NDK/Entity.hpp> #include <NazaraSDK/Entity.hpp>
namespace Ndk namespace Ndk
{ {
@ -81,6 +81,6 @@ namespace Ndk
}; };
} }
#include <NDK/EntityList.inl> #include <NazaraSDK/EntityList.inl>
#endif // NDK_ENTITYLIST_HPP #endif // NDK_ENTITYLIST_HPP

View File

@ -7,7 +7,7 @@
#ifndef NDK_ENTITYOWNER_HPP #ifndef NDK_ENTITYOWNER_HPP
#define NDK_ENTITYOWNER_HPP #define NDK_ENTITYOWNER_HPP
#include <NDK/Entity.hpp> #include <NazaraSDK/Entity.hpp>
namespace Ndk namespace Ndk
{ {
@ -30,6 +30,6 @@ namespace Ndk
}; };
} }
#include <NDK/EntityOwner.inl> #include <NazaraSDK/EntityOwner.inl>
#endif // NDK_ENTITYOWNER_HPP #endif // NDK_ENTITYOWNER_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/EntityOwner.hpp> #include <NazaraSDK/EntityOwner.hpp>
#include <Nazara/Core/StringStream.hpp> #include <Nazara/Core/StringStream.hpp>
#include <functional> #include <functional>
#include <limits> #include <limits>

View File

@ -7,7 +7,7 @@
#ifndef NDK_SDK_HPP #ifndef NDK_SDK_HPP
#define NDK_SDK_HPP #define NDK_SDK_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
namespace Ndk namespace Ndk
{ {
@ -26,6 +26,6 @@ namespace Ndk
}; };
} }
#include <NDK/Sdk.inl> #include <NazaraSDK/Sdk.inl>
#endif // NDK_SDK_HPP #endif // NDK_SDK_HPP

View File

@ -7,7 +7,7 @@
#ifndef NDK_STATE_HPP #ifndef NDK_STATE_HPP
#define NDK_STATE_HPP #define NDK_STATE_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -7,8 +7,8 @@
#ifndef NDK_STATEMACHINE_HPP #ifndef NDK_STATEMACHINE_HPP
#define NDK_STATEMACHINE_HPP #define NDK_STATEMACHINE_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <NDK/State.hpp> #include <NazaraSDK/State.hpp>
#include <memory> #include <memory>
#include <vector> #include <vector>
@ -56,6 +56,6 @@ namespace Ndk
}; };
} }
#include <NDK/StateMachine.inl> #include <NazaraSDK/StateMachine.inl>
#endif // NDK_STATEMACHINE_HPP #endif // NDK_STATEMACHINE_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/StateMachine.hpp> #include <NazaraSDK/StateMachine.hpp>
#include <Nazara/Core/Error.hpp> #include <Nazara/Core/Error.hpp>
#include <utility> #include <utility>

View File

@ -7,7 +7,7 @@
#ifndef NDK_SYSTEM_HPP #ifndef NDK_SYSTEM_HPP
#define NDK_SYSTEM_HPP #define NDK_SYSTEM_HPP
#include <NDK/BaseSystem.hpp> #include <NazaraSDK/BaseSystem.hpp>
namespace Ndk namespace Ndk
{ {
@ -27,6 +27,6 @@ namespace Ndk
}; };
} }
#include <NDK/System.inl> #include <NazaraSDK/System.inl>
#endif // NDK_SYSTEM_HPP #endif // NDK_SYSTEM_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Algorithm.hpp> #include <NazaraSDK/Algorithm.hpp>
#include <type_traits> #include <type_traits>
namespace Ndk namespace Ndk

View File

@ -0,0 +1,17 @@
// This file was automatically generated
#pragma once
#ifndef NDK_SYSTEMS_GLOBAL_HPP
#define NDK_SYSTEMS_GLOBAL_HPP
#include <NazaraSDK/Systems/DebugSystem.hpp>
#include <NazaraSDK/Systems/LifetimeSystem.hpp>
#include <NazaraSDK/Systems/ListenerSystem.hpp>
#include <NazaraSDK/Systems/ParticleSystem.hpp>
#include <NazaraSDK/Systems/PhysicsSystem2D.hpp>
#include <NazaraSDK/Systems/PhysicsSystem3D.hpp>
#include <NazaraSDK/Systems/RenderSystem.hpp>
#include <NazaraSDK/Systems/VelocitySystem.hpp>
#endif // NDK_SYSTEMS_GLOBAL_HPP

View File

@ -12,7 +12,7 @@
#include <Nazara/Utility/IndexBuffer.hpp> #include <Nazara/Utility/IndexBuffer.hpp>
#include <Nazara/Utility/Mesh.hpp> #include <Nazara/Utility/Mesh.hpp>
#include <Nazara/Utility/VertexBuffer.hpp> #include <Nazara/Utility/VertexBuffer.hpp>
#include <NDK/System.hpp> #include <NazaraSDK/System.hpp>
namespace Ndk namespace Ndk
{ {
@ -52,7 +52,7 @@ namespace Ndk
}; };
} }
#include <NDK/Systems/DebugSystem.inl> #include <NazaraSDK/Systems/DebugSystem.inl>
#endif // NDK_SYSTEMS_DEBUGSYSTEM_HPP #endif // NDK_SYSTEMS_DEBUGSYSTEM_HPP
#endif // NDK_SERVER #endif // NDK_SERVER

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Systems/DebugSystem.hpp> #include <NazaraSDK/Systems/DebugSystem.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -7,7 +7,7 @@
#ifndef NDK_SYSTEMS_LIFETIMESYSTEM_HPP #ifndef NDK_SYSTEMS_LIFETIMESYSTEM_HPP
#define NDK_SYSTEMS_LIFETIMESYSTEM_HPP #define NDK_SYSTEMS_LIFETIMESYSTEM_HPP
#include <NDK/System.hpp> #include <NazaraSDK/System.hpp>
namespace Ndk namespace Ndk
{ {
@ -24,6 +24,6 @@ namespace Ndk
}; };
} }
#include <NDK/Systems/LifetimeSystem.inl> #include <NazaraSDK/Systems/LifetimeSystem.inl>
#endif // NDK_SYSTEMS_LIFETIMESYSTEM_HPP #endif // NDK_SYSTEMS_LIFETIMESYSTEM_HPP

View File

@ -8,7 +8,7 @@
#ifndef NDK_SYSTEMS_LISTENERSYSTEM_HPP #ifndef NDK_SYSTEMS_LISTENERSYSTEM_HPP
#define NDK_SYSTEMS_LISTENERSYSTEM_HPP #define NDK_SYSTEMS_LISTENERSYSTEM_HPP
#include <NDK/System.hpp> #include <NazaraSDK/System.hpp>
namespace Ndk namespace Ndk
{ {
@ -25,7 +25,7 @@ namespace Ndk
}; };
} }
#include <NDK/Systems/ListenerSystem.inl> #include <NazaraSDK/Systems/ListenerSystem.inl>
#endif // NDK_SYSTEMS_LISTENERSYSTEM_HPP #endif // NDK_SYSTEMS_LISTENERSYSTEM_HPP
#endif // NDK_SERVER #endif // NDK_SERVER

View File

@ -8,7 +8,7 @@
#ifndef NDK_SYSTEMS_PARTICLESYSTEM_HPP #ifndef NDK_SYSTEMS_PARTICLESYSTEM_HPP
#define NDK_SYSTEMS_PARTICLESYSTEM_HPP #define NDK_SYSTEMS_PARTICLESYSTEM_HPP
#include <NDK/System.hpp> #include <NazaraSDK/System.hpp>
namespace Ndk namespace Ndk
{ {
@ -25,7 +25,7 @@ namespace Ndk
}; };
} }
#include <NDK/Systems/ParticleSystem.inl> #include <NazaraSDK/Systems/ParticleSystem.inl>
#endif // NDK_SYSTEMS_PARTICLESYSTEM_HPP #endif // NDK_SYSTEMS_PARTICLESYSTEM_HPP
#endif // NDK_SERVER #endif // NDK_SERVER

View File

@ -8,8 +8,8 @@
#define NDK_SYSTEMS_PHYSICSSYSTEM2D_HPP #define NDK_SYSTEMS_PHYSICSSYSTEM2D_HPP
#include <Nazara/Physics2D/PhysWorld2D.hpp> #include <Nazara/Physics2D/PhysWorld2D.hpp>
#include <NDK/EntityList.hpp> #include <NazaraSDK/EntityList.hpp>
#include <NDK/System.hpp> #include <NazaraSDK/System.hpp>
#include <memory> #include <memory>
namespace Ndk namespace Ndk
@ -127,6 +127,6 @@ namespace Ndk
}; };
} }
#include <NDK/Systems/PhysicsSystem2D.inl> #include <NazaraSDK/Systems/PhysicsSystem2D.inl>
#endif // NDK_SYSTEMS_PHYSICSSYSTEM2D_HPP #endif // NDK_SYSTEMS_PHYSICSSYSTEM2D_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Systems/PhysicsSystem2D.hpp> #include <NazaraSDK/Systems/PhysicsSystem2D.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -8,8 +8,8 @@
#define NDK_SYSTEMS_PHYSICSSYSTEM3D_HPP #define NDK_SYSTEMS_PHYSICSSYSTEM3D_HPP
#include <Nazara/Physics3D/PhysWorld3D.hpp> #include <Nazara/Physics3D/PhysWorld3D.hpp>
#include <NDK/EntityList.hpp> #include <NazaraSDK/EntityList.hpp>
#include <NDK/System.hpp> #include <NazaraSDK/System.hpp>
#include <memory> #include <memory>
namespace Ndk namespace Ndk
@ -36,6 +36,6 @@ namespace Ndk
}; };
} }
#include <NDK/Systems/PhysicsSystem3D.inl> #include <NazaraSDK/Systems/PhysicsSystem3D.inl>
#endif // NDK_SYSTEMS_PHYSICSSYSTEM3D_HPP #endif // NDK_SYSTEMS_PHYSICSSYSTEM3D_HPP

View File

@ -12,9 +12,9 @@
#include <Nazara/Graphics/CullingList.hpp> #include <Nazara/Graphics/CullingList.hpp>
#include <Nazara/Graphics/DepthRenderTechnique.hpp> #include <Nazara/Graphics/DepthRenderTechnique.hpp>
#include <Nazara/Renderer/RenderTexture.hpp> #include <Nazara/Renderer/RenderTexture.hpp>
#include <NDK/EntityList.hpp> #include <NazaraSDK/EntityList.hpp>
#include <NDK/System.hpp> #include <NazaraSDK/System.hpp>
#include <NDK/Components/GraphicsComponent.hpp> #include <NazaraSDK/Components/GraphicsComponent.hpp>
#include <vector> #include <vector>
namespace Ndk namespace Ndk
@ -79,7 +79,7 @@ namespace Ndk
}; };
} }
#include <NDK/Systems/RenderSystem.inl> #include <NazaraSDK/Systems/RenderSystem.inl>
#endif // NDK_SYSTEMS_RENDERSYSTEM_HPP #endif // NDK_SYSTEMS_RENDERSYSTEM_HPP
#endif // NDK_SERVER #endif // NDK_SERVER

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Systems/RenderSystem.hpp> #include <NazaraSDK/Systems/RenderSystem.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -7,7 +7,7 @@
#ifndef NDK_SYSTEMS_VELOCITYSYSTEM_HPP #ifndef NDK_SYSTEMS_VELOCITYSYSTEM_HPP
#define NDK_SYSTEMS_VELOCITYSYSTEM_HPP #define NDK_SYSTEMS_VELOCITYSYSTEM_HPP
#include <NDK/System.hpp> #include <NazaraSDK/System.hpp>
namespace Ndk namespace Ndk
{ {
@ -24,6 +24,6 @@ namespace Ndk
}; };
} }
#include <NDK/Systems/VelocitySystem.inl> #include <NazaraSDK/Systems/VelocitySystem.inl>
#endif // NDK_SYSTEMS_VELOCITYSYSTEM_HPP #endif // NDK_SYSTEMS_VELOCITYSYSTEM_HPP

View File

@ -0,0 +1,20 @@
// This file was automatically generated
#pragma once
#ifndef NDK_WIDGETS_GLOBAL_HPP
#define NDK_WIDGETS_GLOBAL_HPP
#include <NazaraSDK/Widgets/AbstractTextAreaWidget.hpp>
#include <NazaraSDK/Widgets/BoxLayout.hpp>
#include <NazaraSDK/Widgets/ButtonWidget.hpp>
#include <NazaraSDK/Widgets/CheckboxWidget.hpp>
#include <NazaraSDK/Widgets/Enums.hpp>
#include <NazaraSDK/Widgets/ImageWidget.hpp>
#include <NazaraSDK/Widgets/LabelWidget.hpp>
#include <NazaraSDK/Widgets/ProgressBarWidget.hpp>
#include <NazaraSDK/Widgets/RichTextAreaWidget.hpp>
#include <NazaraSDK/Widgets/ScrollAreaWidget.hpp>
#include <NazaraSDK/Widgets/TextAreaWidget.hpp>
#endif // NDK_WIDGETS_GLOBAL_HPP

View File

@ -9,8 +9,8 @@
#include <Nazara/Graphics/TextSprite.hpp> #include <Nazara/Graphics/TextSprite.hpp>
#include <Nazara/Utility/AbstractTextDrawer.hpp> #include <Nazara/Utility/AbstractTextDrawer.hpp>
#include <NDK/BaseWidget.hpp> #include <NazaraSDK/BaseWidget.hpp>
#include <NDK/Widgets/Enums.hpp> #include <NazaraSDK/Widgets/Enums.hpp>
#include <functional> #include <functional>
#include <vector> #include <vector>
@ -130,6 +130,6 @@ namespace Ndk
}; };
} }
#include <NDK/Widgets/AbstractTextAreaWidget.inl> #include <NazaraSDK/Widgets/AbstractTextAreaWidget.inl>
#endif // NDK_WIDGETS_ABSTRACTTEXTAREAWIDGET_HPP #endif // NDK_WIDGETS_ABSTRACTTEXTAREAWIDGET_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Widgets/AbstractTextAreaWidget.hpp> #include <NazaraSDK/Widgets/AbstractTextAreaWidget.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -7,9 +7,9 @@
#ifndef NDK_WIDGETS_BOXLAYOUT_HPP #ifndef NDK_WIDGETS_BOXLAYOUT_HPP
#define NDK_WIDGETS_BOXLAYOUT_HPP #define NDK_WIDGETS_BOXLAYOUT_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <NDK/BaseWidget.hpp> #include <NazaraSDK/BaseWidget.hpp>
#include <NDK/Widgets/Enums.hpp> #include <NazaraSDK/Widgets/Enums.hpp>
#include <vector> #include <vector>
namespace Ndk namespace Ndk
@ -43,6 +43,6 @@ namespace Ndk
}; };
} }
#include <NDK/Widgets/BoxLayout.inl> #include <NazaraSDK/Widgets/BoxLayout.inl>
#endif // NDK_WIDGETS_BOXLAYOUT_HPP #endif // NDK_WIDGETS_BOXLAYOUT_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Widgets/BoxLayout.hpp> #include <NazaraSDK/Widgets/BoxLayout.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -7,8 +7,8 @@
#ifndef NDK_WIDGETS_BUTTONWIDGET_HPP #ifndef NDK_WIDGETS_BUTTONWIDGET_HPP
#define NDK_WIDGETS_BUTTONWIDGET_HPP #define NDK_WIDGETS_BUTTONWIDGET_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <NDK/BaseWidget.hpp> #include <NazaraSDK/BaseWidget.hpp>
#include <Nazara/Core/Color.hpp> #include <Nazara/Core/Color.hpp>
#include <Nazara/Graphics/Sprite.hpp> #include <Nazara/Graphics/Sprite.hpp>
#include <Nazara/Graphics/TextSprite.hpp> #include <Nazara/Graphics/TextSprite.hpp>
@ -94,6 +94,6 @@ namespace Ndk
}; };
} }
#include <NDK/Widgets/ButtonWidget.inl> #include <NazaraSDK/Widgets/ButtonWidget.inl>
#endif // NDK_WIDGETS_BUTTONWIDGET_HPP #endif // NDK_WIDGETS_BUTTONWIDGET_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Widgets/ButtonWidget.hpp> #include <NazaraSDK/Widgets/ButtonWidget.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -7,10 +7,10 @@
#ifndef NDK_WIDGETS_CHECKBOXWIDGET_HPP #ifndef NDK_WIDGETS_CHECKBOXWIDGET_HPP
#define NDK_WIDGETS_CHECKBOXWIDGET_HPP #define NDK_WIDGETS_CHECKBOXWIDGET_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <NDK/BaseWidget.hpp> #include <NazaraSDK/BaseWidget.hpp>
#include <NDK/Components/NodeComponent.hpp> #include <NazaraSDK/Components/NodeComponent.hpp>
#include <NDK/Widgets/Enums.hpp> #include <NazaraSDK/Widgets/Enums.hpp>
#include <Nazara/Renderer/Texture.hpp> #include <Nazara/Renderer/Texture.hpp>
#include <Nazara/Graphics/Sprite.hpp> #include <Nazara/Graphics/Sprite.hpp>
#include <Nazara/Graphics/TextSprite.hpp> #include <Nazara/Graphics/TextSprite.hpp>
@ -100,6 +100,6 @@ namespace Ndk
}; };
} }
#include <NDK/Widgets/CheckboxWidget.inl> #include <NazaraSDK/Widgets/CheckboxWidget.inl>
#endif // NDK_WIDGETS_CHECKBOXWIDGET_HPP #endif // NDK_WIDGETS_CHECKBOXWIDGET_HPP

View File

@ -7,9 +7,9 @@
#ifndef NDK_WIDGETS_IMAGEWIDGET_HPP #ifndef NDK_WIDGETS_IMAGEWIDGET_HPP
#define NDK_WIDGETS_IMAGEWIDGET_HPP #define NDK_WIDGETS_IMAGEWIDGET_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <NDK/BaseWidget.hpp> #include <NazaraSDK/BaseWidget.hpp>
#include <NDK/Entity.hpp> #include <NazaraSDK/Entity.hpp>
#include <Nazara/Graphics/Sprite.hpp> #include <Nazara/Graphics/Sprite.hpp>
#include <Nazara/Renderer/Texture.hpp> #include <Nazara/Renderer/Texture.hpp>
#include <Nazara/Math/Vector2.hpp> #include <Nazara/Math/Vector2.hpp>
@ -46,6 +46,6 @@ namespace Ndk
}; };
} }
#include <NDK/Widgets/ImageWidget.inl> #include <NazaraSDK/Widgets/ImageWidget.inl>
#endif // NDK_WIDGETS_IMAGEWIDGET_HPP #endif // NDK_WIDGETS_IMAGEWIDGET_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Widgets/ImageWidget.hpp> #include <NazaraSDK/Widgets/ImageWidget.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -7,8 +7,8 @@
#ifndef NDK_WIDGETS_LABELWIDGET_HPP #ifndef NDK_WIDGETS_LABELWIDGET_HPP
#define NDK_WIDGETS_LABELWIDGET_HPP #define NDK_WIDGETS_LABELWIDGET_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <NDK/BaseWidget.hpp> #include <NazaraSDK/BaseWidget.hpp>
#include <Nazara/Graphics/TextSprite.hpp> #include <Nazara/Graphics/TextSprite.hpp>
namespace Nz namespace Nz
@ -37,6 +37,6 @@ namespace Ndk
}; };
} }
#include <NDK/Widgets/LabelWidget.inl> #include <NazaraSDK/Widgets/LabelWidget.inl>
#endif // NDK_WIDGETS_LABELWIDGET_HPP #endif // NDK_WIDGETS_LABELWIDGET_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Widgets/LabelWidget.hpp> #include <NazaraSDK/Widgets/LabelWidget.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -7,8 +7,8 @@
#ifndef NDK_WIDGETS_PROGRESSBARWIDGET_HPP #ifndef NDK_WIDGETS_PROGRESSBARWIDGET_HPP
#define NDK_WIDGETS_PROGRESSBARWIDGET_HPP #define NDK_WIDGETS_PROGRESSBARWIDGET_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <NDK/BaseWidget.hpp> #include <NazaraSDK/BaseWidget.hpp>
#include <Nazara/Core/Color.hpp> #include <Nazara/Core/Color.hpp>
#include <Nazara/Graphics/Sprite.hpp> #include <Nazara/Graphics/Sprite.hpp>
#include <Nazara/Graphics/TextSprite.hpp> #include <Nazara/Graphics/TextSprite.hpp>
@ -96,6 +96,6 @@ namespace Ndk
}; };
} }
#include <NDK/Widgets/ProgressBarWidget.inl> #include <NazaraSDK/Widgets/ProgressBarWidget.inl>
#endif // NDK_WIDGETS_PROGRESSBARWIDGET_HPP #endif // NDK_WIDGETS_PROGRESSBARWIDGET_HPP

View File

@ -8,7 +8,7 @@
#define NDK_WIDGETS_RICHTEXTAREAWIDGET_HPP #define NDK_WIDGETS_RICHTEXTAREAWIDGET_HPP
#include <Nazara/Utility/RichTextDrawer.hpp> #include <Nazara/Utility/RichTextDrawer.hpp>
#include <NDK/Widgets/AbstractTextAreaWidget.hpp> #include <NazaraSDK/Widgets/AbstractTextAreaWidget.hpp>
namespace Ndk namespace Ndk
{ {
@ -63,6 +63,6 @@ namespace Ndk
}; };
} }
#include <NDK/Widgets/RichTextAreaWidget.inl> #include <NazaraSDK/Widgets/RichTextAreaWidget.inl>
#endif // NDK_WIDGETS_TEXTAREAWIDGET_HPP #endif // NDK_WIDGETS_TEXTAREAWIDGET_HPP

View File

@ -2,7 +2,7 @@
// This file is part of the "Nazara Development Kit" // This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp // For conditions of distribution and use, see copyright notice in Prerequisites.hpp
#include <NDK/Widgets/RichTextAreaWidget.hpp> #include <NazaraSDK/Widgets/RichTextAreaWidget.hpp>
namespace Ndk namespace Ndk
{ {

View File

@ -7,8 +7,8 @@
#ifndef NDK_WIDGETS_SCROLLAREAWIDGET_HPP #ifndef NDK_WIDGETS_SCROLLAREAWIDGET_HPP
#define NDK_WIDGETS_SCROLLAREAWIDGET_HPP #define NDK_WIDGETS_SCROLLAREAWIDGET_HPP
#include <NDK/Prerequisites.hpp> #include <NazaraSDK/Prerequisites.hpp>
#include <NDK/BaseWidget.hpp> #include <NazaraSDK/BaseWidget.hpp>
#include <Nazara/Graphics/TextSprite.hpp> #include <Nazara/Graphics/TextSprite.hpp>
namespace Ndk namespace Ndk
@ -69,6 +69,6 @@ namespace Ndk
}; };
} }
#include <NDK/Widgets/ScrollAreaWidget.inl> #include <NazaraSDK/Widgets/ScrollAreaWidget.inl>
#endif // NDK_WIDGETS_SCROLLAREAWIDGET_HPP #endif // NDK_WIDGETS_SCROLLAREAWIDGET_HPP

Some files were not shown because too many files have changed in this diff Show More