Files
escape-the-dawn/Escape-the-Dawn/Components/Bounds.h
T
Adam 2fa8963e0a Merge branch 'master' of github.com:sippeangelo/Escape-the-Dawn
Conflicts:
	Escape-the-Dawn/AABB.h
	Escape-the-Dawn/Components/Bounds.h
	Escape-the-Dawn/Escape-the-Dawn.vcxproj
	Escape-the-Dawn/Escape-the-Dawn.vcxproj.filters
2014-03-07 19:17:24 +01:00

19 lines
370 B
C++

#ifndef Components_Bounds_h__
#define Components_Bounds_h__
#include "Component.h"
#include <glm/common.hpp>
namespace Components
{
struct Bounds : Component
{
//Axis Aligned Bounding Box
glm::vec3 origin;
glm::vec3 volumeVector; //The vector that defines the volume of the BB, it goes from one corner to the opposite one
};
}
#endif // !Components_Bounds_h__