mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
7fd7d0c1f3
* d_a_obj_carry work, SETUP_ACTOR macro * rm headers, add script * progress * macro rename, consistent spacing
12 lines
367 B
C
12 lines
367 B
C
#ifndef C_TREE_ITER_H
|
|
#define C_TREE_ITER_H
|
|
|
|
#include "SSystem/SComponent/c_node_iter.h"
|
|
|
|
typedef struct node_lists_tree_class node_lists_tree_class;
|
|
|
|
int cTrIt_Method(node_lists_tree_class* pTree, cNdIt_MethodFunc pJudgeFunc, void* pUserData);
|
|
void* cTrIt_Judge(node_lists_tree_class* pTree, cNdIt_JudgeFunc pJudgeFunc, void* pUserData);
|
|
|
|
#endif /* C_TREE_ITER_H */
|