mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-23 14:41:33 -04:00
f9380b3e05
* d_a_obj_carry work, SETUP_ACTOR macro * rm headers, add script * progress * macro rename, consistent spacing
12 lines
336 B
C
12 lines
336 B
C
#ifndef C_LIST_ITER_H
|
|
#define C_LIST_ITER_H
|
|
|
|
#include "SSystem/SComponent/c_node_iter.h"
|
|
|
|
typedef struct node_list_class node_list_class;
|
|
|
|
int cLsIt_Method(node_list_class* pList, cNdIt_MethodFunc pMethod, void* pUserData);
|
|
void* cLsIt_Judge(node_list_class* pList, cNdIt_JudgeFunc pJudge, void* pUserData);
|
|
|
|
#endif /* C_LIST_ITER_H */
|