2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 03:47:43 +00:00

CBooRender imps

This commit is contained in:
Jack Andersen
2016-07-25 12:52:02 -10:00
parent 9b62191975
commit af5cafee12
6 changed files with 302 additions and 18 deletions

View File

@@ -6,9 +6,18 @@
namespace urde
{
class CDrawablePlaneObject
class CDrawablePlaneObject : public CDrawable
{
CDrawablePlaneObject(EDrawableType, float, float, const zeus::CAABox&, bool, const zeus::CPlane&, bool, const void*);
u16 x24_extraSort2;
float x28_something;
zeus::CPlane x2c_plane;
bool x3c_24 : 1;
bool x3c_25 : 1;
public:
CDrawablePlaneObject(EDrawableType dtype, float dist, float something, const zeus::CAABox& aabb,
bool b1, const zeus::CPlane& plane, bool b2, const void* data)
: CDrawable(dtype, 0, dist, aabb, data), x24_extraSort2(0), x28_something(something),
x2c_plane(plane) {x3c_24 = b1; x3c_25 = b2;}
};
}