mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-09-05 17:47:54 -04:00
5a92780d42
* Mod SDK: Actor Service * Modding doc fix * Update naming for actor service. Begin custom actor example mod * Example Mod Updates, On unregister: Only delete requested actors of the right type. Update docs * Cleanup & fixes * Rename to custom_actor_demo * tweaks * Finish mine demo actor --------- Co-authored-by: MelonSpeedruns <melonspeedruns@stratobox.net> Co-authored-by: Luke Street <luke@street.dev>
17 lines
360 B
C
17 lines
360 B
C
|
|
#ifndef F_PC_DELETOR_H_
|
|
#define F_PC_DELETOR_H_
|
|
|
|
#include <types.h>
|
|
|
|
typedef struct base_process_class base_process_class;
|
|
|
|
BOOL fpcDt_IsComplete();
|
|
int fpcDt_deleteMethod(base_process_class* i_proc);
|
|
int fpcDt_ToDeleteQ(base_process_class* i_proc);
|
|
int fpcDt_ToQueue(base_process_class* i_proc);
|
|
void fpcDt_Handler();
|
|
int fpcDt_Delete(void* i_proc);
|
|
|
|
#endif
|