mirror of https://github.com/AxioDL/zeus.git
* Fix includes and project
This commit is contained in:
parent
b9c8268b37
commit
44b47ef790
|
@ -1,7 +1,7 @@
|
|||
#ifndef CFRUSTUM_HPP
|
||||
#define CFRUSTUM_HPP
|
||||
|
||||
#include <MathLib.hpp>
|
||||
#include "CPlane.hpp"
|
||||
#include "SBoundingBox.hpp"
|
||||
|
||||
class CFrustum
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
#include "CVector4f.hpp"
|
||||
#include "CRectangle.hpp"
|
||||
#include "CPlane.hpp"
|
||||
#include "SBoundingBox.hpp"
|
||||
#include "CFrustum.hpp"
|
||||
#include "CColor.hpp"
|
||||
#include "Global.hpp"
|
||||
#include "Math.hpp"
|
||||
|
|
|
@ -27,6 +27,8 @@ HEADERS += \
|
|||
$$PWD/CRectangle.hpp \
|
||||
$$PWD/CMatrix4f.hpp \
|
||||
$$PWD/TVectorUnion.hpp \
|
||||
$$PWD/CVector4f.hpp
|
||||
$$PWD/CVector4f.hpp \
|
||||
$$PWD/CFrustum.hpp \
|
||||
$$PWD/SBoundingBox.hpp
|
||||
|
||||
INCLUDEPATH += $$PWD
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#ifndef BOUNDINGBOX_HPP
|
||||
#define BOUNDINGBOX_HPP
|
||||
#include <MathLib.hpp>
|
||||
|
||||
#include "CVector3f.hpp"
|
||||
#include <Athena/IStreamReader.hpp>
|
||||
|
||||
struct SBoundingBox
|
||||
|
|
Loading…
Reference in New Issue