mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
21 lines
559 B
C++
21 lines
559 B
C++
#ifndef _CSCANTREEINVENTORY
|
|
#define _CSCANTREEINVENTORY
|
|
|
|
#include "rstl/string.hpp"
|
|
#include "Kyoto/SObjectTag.hpp"
|
|
|
|
#include "MetroidPrime/Player/CPlayerState.hpp"
|
|
|
|
class CInputStream;
|
|
class SLdrTransform;
|
|
|
|
class CScanTreeInventory {
|
|
public:
|
|
CScanTreeInventory(int id, const SLdrTransform& transform, CAssetId nameStringTable, CAssetId scannableInfo,
|
|
CPlayerState::EItemType inventorySlotId, const rstl::string& nameStringName);
|
|
};
|
|
|
|
CScanTreeInventory* LoadScanTreeInventory(int* id, CInputStream& input);
|
|
|
|
#endif // _CSCANTREEINVENTORY
|