mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 00:31:21 +00:00
27 lines
576 B
C++
27 lines
576 B
C++
#ifndef __URDE_CINVENTORYSCREEN_HPP__
|
|
#define __URDE_CINVENTORYSCREEN_HPP__
|
|
|
|
#include "CInGameGuiManager.hpp"
|
|
#include "CPauseScreenBase.hpp"
|
|
#include "CSamusDoll.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
class CDependencyGroup;
|
|
|
|
namespace MP1
|
|
{
|
|
|
|
class CInventoryScreen : public CPauseScreenBase
|
|
{
|
|
std::unique_ptr<CSamusDoll> x19c_samusDoll;
|
|
public:
|
|
CInventoryScreen(const CStateManager& mgr, const CGuiFrame& frame, const CStringTable& pauseStrg,
|
|
const CDependencyGroup& suitDgrp, const CDependencyGroup& ballDgrp);
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __URDE_CINVENTORYSCREEN_HPP__
|