mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-15 08:46:09 +00:00
Match and link CAreaBspTree
Former-commit-id: ee9de720115f11518d7f0e9e86c1f3aab0202b15
This commit is contained in:
@@ -667,7 +667,7 @@ config.libs = [
|
|||||||
Object(NonMatching, "WorldFormat/CAreaOctTree_Tests.cpp"),
|
Object(NonMatching, "WorldFormat/CAreaOctTree_Tests.cpp"),
|
||||||
Object(Matching, "WorldFormat/CCollisionSurface.cpp"),
|
Object(Matching, "WorldFormat/CCollisionSurface.cpp"),
|
||||||
Object(Matching, "WorldFormat/CMetroidModelInstance.cpp"),
|
Object(Matching, "WorldFormat/CMetroidModelInstance.cpp"),
|
||||||
Object(NonMatching, "WorldFormat/CAreaBspTree.cpp"),
|
Object(Matching, "WorldFormat/CAreaBspTree.cpp"),
|
||||||
Object(NonMatching, "WorldFormat/CAreaOctTree.cpp"),
|
Object(NonMatching, "WorldFormat/CAreaOctTree.cpp"),
|
||||||
Object(NonMatching, "WorldFormat/CMetroidAreaCollider.cpp"),
|
Object(NonMatching, "WorldFormat/CMetroidAreaCollider.cpp"),
|
||||||
Object(NonMatching, "WorldFormat/CWorldLight.cpp"),
|
Object(NonMatching, "WorldFormat/CWorldLight.cpp"),
|
||||||
|
|||||||
11
include/WorldFormat/CAreaBspTree.hpp
Normal file
11
include/WorldFormat/CAreaBspTree.hpp
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
#ifndef _CAREABSPTREE
|
||||||
|
#define _CAREABSPTREE
|
||||||
|
|
||||||
|
class CInputStream;
|
||||||
|
class CTransform4f;
|
||||||
|
class CAreaBspTree {
|
||||||
|
public:
|
||||||
|
CAreaBspTree(CInputStream& in, const CTransform4f& xf);
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // _CAREABSPTREE
|
||||||
10
src/WorldFormat/CAreaBspTree.cpp
Normal file
10
src/WorldFormat/CAreaBspTree.cpp
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#include <WorldFormat/CAreaBspTree.hpp>
|
||||||
|
|
||||||
|
#include <Kyoto/Math/CTransform4f.hpp>
|
||||||
|
#include <Kyoto/Streams/CInputStream.hpp>
|
||||||
|
|
||||||
|
CAreaBspTree::CAreaBspTree(CInputStream& in, const CTransform4f& xf) {
|
||||||
|
in.ReadLong();
|
||||||
|
in.ReadShort();
|
||||||
|
in.ReadShort();
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user