mirror of
https://github.com/zeldaret/tp
synced 2026-05-25 15:25:25 -04:00
89385fe8fd
* f_op_actor_tag OK * f_pc_layer_tag OK * f_pc_layer_iter * forgot a return * identation and extern var name comments * fix struct member name Co-authored-by: Pheenoh <pheenoh@gmail.com>
22 lines
549 B
C
22 lines
549 B
C
#ifndef F_PC_LAYER_ITER_H
|
|
#define F_PC_LAYER_ITER_H
|
|
|
|
#include "global.h"
|
|
#include "f/f_pc/f_pc_layer.h"
|
|
#include "SComponent/c_node_iter.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 |