mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
begin adding d_com_inf_game, add include guards to headers
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
#ifndef J2DSCREEN_H_
|
||||||
|
#define J2DSCREEN_H_
|
||||||
|
|
||||||
class J2DScreen {
|
class J2DScreen {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1,3 +1,8 @@
|
|||||||
|
#ifndef JKRARCHIVE_H_
|
||||||
|
#define JKRARCHIVE_H_
|
||||||
|
|
||||||
class JKRArchive {
|
class JKRArchive {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#ifndef D_COM_INF_GAME_H_
|
||||||
|
#define D_COM_INF_GAME_H_
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1,7 +1,12 @@
|
|||||||
|
#ifndef D_DRAWLIST_H_
|
||||||
|
#define D_DRAWLIST_H_
|
||||||
|
|
||||||
class dDlst_FileInfo_c {
|
class dDlst_FileInfo_c {
|
||||||
public:
|
public:
|
||||||
void draw(void);
|
void draw(void);
|
||||||
~dDlst_FileInfo_c();
|
~dDlst_FileInfo_c();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif D_DRAWLIST_H_
|
||||||
@@ -1,3 +1,6 @@
|
|||||||
|
#ifndef D_FILE_SEL_INFO_H_
|
||||||
|
#define D_FILE_SEL_INFO_H_
|
||||||
|
|
||||||
#include "JSystem/J2DGraph/J2DScreen/J2DScreen.h"
|
#include "JSystem/J2DGraph/J2DScreen/J2DScreen.h"
|
||||||
#include "JSystem/JKernel/JKRArchive/JKRArchive.h"
|
#include "JSystem/JKernel/JKRArchive/JKRArchive.h"
|
||||||
#include "JSystem/JUtility/JUTFont/JUTFont.h"
|
#include "JSystem/JUtility/JUTFont/JUTFont.h"
|
||||||
@@ -44,3 +47,5 @@ class dFile_info_c {
|
|||||||
char* play_time;
|
char* play_time;
|
||||||
char* unk56;
|
char* unk56;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1,3 +1,8 @@
|
|||||||
|
#ifndef D_PANE_CLASS_ALPHA_H_
|
||||||
|
#define D_PANE_CLASS_ALPHA_H_
|
||||||
|
|
||||||
class CPaneMgrAlpha {
|
class CPaneMgrAlpha {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1,3 +1,6 @@
|
|||||||
|
#ifndef D_SAVE_H_
|
||||||
|
#define D_SAVE_H_
|
||||||
|
|
||||||
#include "dolphin/types.h"
|
#include "dolphin/types.h"
|
||||||
#define MAX_BOTTLES 4
|
#define MAX_BOTTLES 4
|
||||||
#define MAX_ITEM_SLOTS 24
|
#define MAX_ITEM_SLOTS 24
|
||||||
@@ -409,10 +412,10 @@ class dSv_player_config_c {
|
|||||||
class dSv_player_c {
|
class dSv_player_c {
|
||||||
public:
|
public:
|
||||||
void init(void);
|
void init(void);
|
||||||
inline dSv_player_info_c& getPlayerInfo() {
|
dSv_player_info_c& getPlayerInfo() {
|
||||||
return player_info;
|
return player_info;
|
||||||
}
|
}
|
||||||
inline dSv_player_status_a_c getPlayerStatusA() {
|
dSv_player_status_a_c getPlayerStatusA() {
|
||||||
return player_status_a;
|
return player_status_a;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -661,4 +664,6 @@ class dSv_info_c {
|
|||||||
dSv_restart_c restart;
|
dSv_restart_c restart;
|
||||||
dSv_event_c events;
|
dSv_event_c events;
|
||||||
dSv_turnRestart_c turn_restart;
|
dSv_turnRestart_c turn_restart;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1,3 +1,6 @@
|
|||||||
|
#ifndef D_SAVE_HIO_H_
|
||||||
|
#define D_SAVE_HIO_H_
|
||||||
|
|
||||||
#include "dolphin/types.h"
|
#include "dolphin/types.h"
|
||||||
|
|
||||||
struct dSvBit_childSwPerfectionHIO_c_vtable {
|
struct dSvBit_childSwPerfectionHIO_c_vtable {
|
||||||
@@ -17,3 +20,4 @@ class dSvBit_childSwPerfectionHIO_c {
|
|||||||
u8 unk0[10];
|
u8 unk0[10];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1 +1,5 @@
|
|||||||
// ok
|
#include "d/d_com/d_com_inf_game/d_com_inf_game.h"
|
||||||
|
|
||||||
|
void dComIfG_play_c:ct(void) {
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user