mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-04 10:48:31 -04:00
adb95b135c
Original repository: https://github.com/encounter/ww
21 lines
527 B
C++
21 lines
527 B
C++
/**
|
|
* f_op_scene_iter.cpp
|
|
* Framework - Scene Process Iteration
|
|
*/
|
|
|
|
#include "f_op/f_op_scene_iter.h"
|
|
#include "SSystem/SComponent/c_list_iter.h"
|
|
#include "SSystem/SComponent/c_tag_iter.h"
|
|
#include "f_op/f_op_scene_tag.h"
|
|
|
|
void* fopScnIt_Judge(fop_ScnItFunc pFunc1, void* pData) {
|
|
struct {
|
|
fop_ScnItFunc mFunc;
|
|
void* mpData;
|
|
} iterParams;
|
|
|
|
iterParams.mFunc = pFunc1;
|
|
iterParams.mpData = pData;
|
|
return cLsIt_Judge(&g_fopScnTg_SceneList, (cNdIt_JudgeFunc)cTgIt_JudgeFilter, &iterParams);
|
|
}
|