Merge remote-tracking branch 'origin/master' into CapturePointTake

# Conflicts:
#	src/Game/Game.cpp
#	src/Tests/ResourceManagerTest.cpp
This commit is contained in:
verysecrethero
2016-01-15 11:24:20 +01:00
45 changed files with 822 additions and 779 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef Transform_h__
#define Transform_h__
#include "../GLM.h"
#include "World.h"
namespace Transform
{
glm::vec3 AbsolutePosition(World* world, EntityID entity);
glm::quat AbsoluteOrientation(World* world, EntityID entity);
glm::vec3 AbsoluteScale(World* world, EntityID entity);
glm::mat4 ModelMatrix(EntityID entity, World* world);
}
#endif