mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
14 lines
283 B
C++
14 lines
283 B
C++
#pragma once
|
|
|
|
#include <revolution.h>
|
|
|
|
namespace MR {
|
|
struct StationedFileInfo {
|
|
s32 mHeapType; // 0x0
|
|
s32 mLoadType; // 0x4
|
|
const char* mArchive; // 0x8
|
|
};
|
|
|
|
const StationedFileInfo* getStationedFileInfoTable();
|
|
};
|