* Fix includes and project

This commit is contained in:
Phillip Stephens 2015-05-06 00:30:06 -07:00
parent b9c8268b37
commit 44b47ef790
4 changed files with 8 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#ifndef CFRUSTUM_HPP #ifndef CFRUSTUM_HPP
#define CFRUSTUM_HPP #define CFRUSTUM_HPP
#include <MathLib.hpp> #include "CPlane.hpp"
#include "SBoundingBox.hpp" #include "SBoundingBox.hpp"
class CFrustum class CFrustum

View File

@ -12,6 +12,8 @@
#include "CVector4f.hpp" #include "CVector4f.hpp"
#include "CRectangle.hpp" #include "CRectangle.hpp"
#include "CPlane.hpp" #include "CPlane.hpp"
#include "SBoundingBox.hpp"
#include "CFrustum.hpp"
#include "CColor.hpp" #include "CColor.hpp"
#include "Global.hpp" #include "Global.hpp"
#include "Math.hpp" #include "Math.hpp"

View File

@ -27,6 +27,8 @@ HEADERS += \
$$PWD/CRectangle.hpp \ $$PWD/CRectangle.hpp \
$$PWD/CMatrix4f.hpp \ $$PWD/CMatrix4f.hpp \
$$PWD/TVectorUnion.hpp \ $$PWD/TVectorUnion.hpp \
$$PWD/CVector4f.hpp $$PWD/CVector4f.hpp \
$$PWD/CFrustum.hpp \
$$PWD/SBoundingBox.hpp
INCLUDEPATH += $$PWD INCLUDEPATH += $$PWD

View File

@ -1,6 +1,7 @@
#ifndef BOUNDINGBOX_HPP #ifndef BOUNDINGBOX_HPP
#define BOUNDINGBOX_HPP #define BOUNDINGBOX_HPP
#include <MathLib.hpp>
#include "CVector3f.hpp"
#include <Athena/IStreamReader.hpp> #include <Athena/IStreamReader.hpp>
struct SBoundingBox struct SBoundingBox