mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-12 05:27:14 -04:00
13 lines
292 B
C
13 lines
292 B
C
#ifndef F_OP_ACTOR_ITER_H_
|
|
#define F_OP_ACTOR_ITER_H_
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
typedef int (*fopAcIt_ExecutorFunc)(void*, void*);
|
|
typedef void* (*fopAcIt_JudgeFunc)(void*, void*);
|
|
|
|
BOOL fopAcIt_Executor(fopAcIt_ExecutorFunc, void*);
|
|
void* fopAcIt_Judge(fopAcIt_JudgeFunc, void*);
|
|
|
|
#endif
|