mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 06:50:43 -04:00
bbacd1a0e8
* wip on alink_wolf * setup procvar unions * most of d_a_alink_wolf done + some misc
11 lines
317 B
C
11 lines
317 B
C
#ifndef F_OP_ACTOR_ITER_H_
|
|
#define F_OP_ACTOR_ITER_H_
|
|
|
|
|
|
typedef int (*fopAcIt_ExecutorFunc)(void* actor, void* data);
|
|
typedef void* (*fopAcIt_JudgeFunc)(void* actor, void* data);
|
|
|
|
int fopAcIt_Executor(fopAcIt_ExecutorFunc executeFunc, void* data);
|
|
void* fopAcIt_Judge(fopAcIt_JudgeFunc judgeFunc, void* data);
|
|
|
|
#endif |