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

CWorldTransManager 2-camera instances

This commit is contained in:
Jack Andersen
2016-09-11 18:53:28 -10:00
parent e91efb2313
commit 7d2370efe0
19 changed files with 129 additions and 95 deletions

View File

@@ -87,6 +87,8 @@ class CModelData
std::unique_ptr<CBooModel> m_xrayModelInst;
std::unique_ptr<CBooModel> m_infraModelInst;
int m_drawInstCount;
public:
enum class EWhichModel
{
@@ -98,8 +100,8 @@ public:
void SetSortThermal(bool v) { x14_25_sortThermal = v; }
~CModelData();
CModelData(const CStaticRes& res);
CModelData(const CAnimRes& res);
CModelData(const CStaticRes& res, int instCount=1);
CModelData(const CAnimRes& res, int instCount=1);
CModelData(CModelData&&) = default;
CModelData& operator=(CModelData&&) = default;
CModelData();