marioparty4/include/REL/board_executor.h
gamemasterplc 2410043a17 Rename InitBoard and BoardCommonInit
InitBoard renamed to ObjectSetup. BoardCommonInit renamed to BoardObjectSetup
2024-06-26 08:06:07 -05:00

26 lines
463 B
C

#ifndef REL_BOARD_EXECUTOR_H
#define REL_BOARD_EXECUTOR_H
#ifdef __cplusplus
extern "C" {
#endif
#include "dolphin/types.h"
extern s32 _prolog();
extern void _epilog();
typedef void (*VoidFunc)(void);
extern const VoidFunc _ctors[];
extern const VoidFunc _dtors[];
extern void BoardObjectSetup(VoidFunc create, VoidFunc destroy);
extern void BoardCreate(void);
extern void BoardDestroy(void);
#ifdef __cplusplus
}
#endif
#endif /* REL_BOARD_EXECUTOR_H */