mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 07:02:47 -04:00
c9e2a73dda
* typedef for cPhs_Step * make sdk includes consistent * d_menu_quit / d_msg_scrn_explain debug * d_a_obj_testcube mostly done * d_debug_pad mostly done * jstudio tool library headers * some JStudioCameraEditor headers * d_jcam_editor mostly done * try fixing some shield regressions * d_bg_parts mostly done * fix merge errors * debug fix
15 lines
369 B
C
15 lines
369 B
C
#ifndef F_PC_DRAW_H_
|
|
#define F_PC_DRAW_H_
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
typedef struct base_process_class base_process_class;
|
|
|
|
typedef int (*fpcDw_HandlerFunc)(void*, void*);
|
|
typedef int (*fpcDw_HandlerFuncFunc)(fpcDw_HandlerFunc);
|
|
|
|
int fpcDw_Execute(base_process_class* i_proc);
|
|
int fpcDw_Handler(fpcDw_HandlerFuncFunc i_iterHandler, fpcDw_HandlerFunc i_func);
|
|
|
|
#endif
|