mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-18 14:25:24 -04:00
3b69d4cba0
* match a few nonmatchings, delete unused asm * fix missing returns in f_op_actor_iter * remove obsolete comments
22 lines
735 B
C++
22 lines
735 B
C++
/* f_op_scene_iter.cpp autogenerated by split.py v0.4 at 2021-02-15 20:27:34.795954 */
|
|
|
|
#include "f/f_op/f_op_scene_iter.h"
|
|
#include "SComponent/c_list.h"
|
|
#include "SComponent/c_list_iter.h"
|
|
#include "SComponent/c_tag_iter.h"
|
|
#include "global.h"
|
|
|
|
// additional symbols needed for f_op_scene_iter.cpp
|
|
// autogenerated by split.py v0.4 at 2021-02-15 20:27:34.795978
|
|
extern node_list_class lbl_803A3918; // f_op_scene_tag::g_fopScnTg_SceneList
|
|
|
|
void* fopScnIt_Judge(fop_ScnItFunc pFunc1, void* pData) {
|
|
struct {
|
|
fop_ScnItFunc mFunc;
|
|
void* mpData;
|
|
} iterParams;
|
|
iterParams.mFunc = pFunc1;
|
|
iterParams.mpData = pData;
|
|
return cLsIt_Judge(&lbl_803A3918, (cNdIt_JudgeFunc)cTgIt_JudgeFilter, &iterParams);
|
|
}
|