mirror of
https://github.com/zeldaret/tp
synced 2026-06-16 06:45:54 -04:00
7fd7d0c1f3
* 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 |