mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 23:15:06 -04:00
f9380b3e05
* d_a_obj_carry work, SETUP_ACTOR macro * rm headers, add script * progress * macro rename, consistent spacing
11 lines
263 B
C
11 lines
263 B
C
#ifndef F_OP_ACTOR_ITER_H_
|
|
#define F_OP_ACTOR_ITER_H_
|
|
|
|
|
|
typedef int (*fopAcIt_ExecutorFunc)(void*, void*);
|
|
typedef void* (*fopAcIt_JudgeFunc)(void*, void*);
|
|
|
|
int fopAcIt_Executor(fopAcIt_ExecutorFunc, void*);
|
|
void* fopAcIt_Judge(fopAcIt_JudgeFunc, void*);
|
|
|
|
#endif |