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

Plenty of dependency stubs for CStateManager

This commit is contained in:
Jack Andersen
2016-08-14 11:11:44 -10:00
parent 91b5b3ed73
commit 24bfc47d1a
58 changed files with 983 additions and 30 deletions

View File

@@ -3,16 +3,32 @@
#include "CEntity.hpp"
#include "zeus/CTransform.hpp"
#include "CPlayerState.hpp"
namespace urde
{
class CScriptSpawnPoint : public CEntity
{
zeus::CTransform x34_xf;
std::vector<u32> x64_itemCounts;
union
{
struct
{
bool x10c_24_firstSpawn : 1;
bool x10c_25_ : 1;
};
u8 _dummy = 0;
};
public:
CScriptSpawnPoint(TUniqueId, const std::string& name, const CEntityInfo& info,
const zeus::CTransform& xf, const std::vector<u32>& itemCounts,
bool, bool, bool);
bool FirstSpawn() const { return x10c_24_firstSpawn; }
const zeus::CTransform& GetTransform() const { return x34_xf; }
u32 GetPowerup(CPlayerState::EItemType item) const;
};
}