2021-03-28 22:49:05 +02:00
|
|
|
#ifndef D_COM_D_COM_INF_ACTOR_H
|
|
|
|
|
#define D_COM_D_COM_INF_ACTOR_H
|
|
|
|
|
|
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
|
|
2023-03-07 18:03:46 -07:00
|
|
|
class dComIfGoat_info_c {
|
|
|
|
|
public:
|
|
|
|
|
/* 0x0 */ int field_0x0;
|
|
|
|
|
};
|
|
|
|
|
|
2022-06-29 13:19:09 -07:00
|
|
|
class dComIfAc_info_c {
|
|
|
|
|
public:
|
|
|
|
|
/* 0x0 */ int field_0x0;
|
|
|
|
|
/* 0x4 */ bool mPause;
|
|
|
|
|
};
|
|
|
|
|
|
2023-03-07 18:03:46 -07:00
|
|
|
extern dComIfGoat_info_c g_dComIfGoat_gameInfo;
|
2022-06-29 13:19:09 -07:00
|
|
|
extern dComIfAc_info_c g_dComIfAc_gameInfo;
|
|
|
|
|
|
|
|
|
|
inline bool dComIfA_PauseCheck() {
|
|
|
|
|
return g_dComIfAc_gameInfo.mPause;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-28 22:49:05 +02:00
|
|
|
#endif /* D_COM_D_COM_INF_ACTOR_H */
|