tp/include/f/f_pc/f_pc_layer_iter.h

21 lines
546 B
C

#ifndef F_PC_LAYER_ITER_H
#define F_PC_LAYER_ITER_H
#include "SComponent/c_node_iter.h"
#include "f/f_pc/f_pc_layer.h"
#include "global.h"
struct layer_iter {
void* mpFunc;
void* mpUserData;
};
extern "C" {
int fpcLyIt_OnlyHere(layer_class* pLayer, cNdIt_MethodFunc pFunc, void* pUserData);
int fpcLyIt_OnlyHereLY(layer_class* pLayer, cNdIt_MethodFunc pFunc, void* pUserData);
void* fpcLyIt_Judge(layer_class* pLayer, cNdIt_MethodFunc pFunc, void* pUserData);
void* fpcLyIt_AllJudge(cNdIt_MethodFunc pFunc, void* pUserData);
}
#endif