mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 06:50:43 -04:00
073992df8d
* cleanup f_pc files * cleanup f_op files * fix a couple f_op_actor_mng functions * minor JSystem work
14 lines
261 B
C
14 lines
261 B
C
|
|
#ifndef F_PC_METHOD_ITER_H_
|
|
#define F_PC_METHOD_ITER_H_
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
typedef struct node_list_class node_list_class;
|
|
|
|
typedef int (*fpcMtdIt_MethodFunc)(void*);
|
|
|
|
int fpcMtdIt_Method(node_list_class* pList, fpcMtdIt_MethodFunc pMethod);
|
|
|
|
#endif
|