Ndk: Add RenderSystem (experimental)

Former-commit-id: 23b11c6e9a21a4f26df6bde3d161578101cb2b29
This commit is contained in:
Lynix
2015-05-19 01:03:11 +02:00
parent e0da339217
commit 9aacbe158c
5 changed files with 86 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
#include <Nazara/Core/Error.hpp>
#include <NDK/Systems/ListenerSystem.hpp>
#include <NDK/Systems/PhysicsSystem.hpp>
#include <NDK/Systems/RenderSystem.hpp>
#include <NDK/Systems/VelocitySystem.hpp>
namespace Ndk
@@ -20,6 +21,7 @@ namespace Ndk
{
AddSystem<ListenerSystem>();
AddSystem<PhysicsSystem>();
AddSystem<RenderSystem>();
AddSystem<VelocitySystem>();
}