mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-11-28 07:40:37 +00:00
b6d7d1d72b
need the anonymous namespace string tables
28 lines
404 B
C++
28 lines
404 B
C++
#ifndef _PIKMIN2ARAM_H
|
|
#define _PIKMIN2ARAM_H
|
|
|
|
#include "types.h"
|
|
|
|
namespace Pikmin2ARAM {
|
|
struct Mgr {
|
|
Mgr();
|
|
|
|
virtual ~Mgr() { } // _08 (weak)
|
|
|
|
static void init();
|
|
void setLoadPermission(bool);
|
|
bool isEntryOnly();
|
|
void load();
|
|
void dump();
|
|
void loadEnemy();
|
|
void load2D();
|
|
void loadDemo();
|
|
void loadItem();
|
|
|
|
// _00 = VTBL
|
|
bool mLoadPermission; // _04
|
|
};
|
|
} // namespace Pikmin2ARAM
|
|
|
|
#endif
|