Files
dusklight/src/f_pc/f_pc_method_iter.cpp
T
TakaRikka 24b72a5302 some cleanup of f_pc/f_op files (#2254)
* cleanup f_pc files

* cleanup f_op files

* fix a couple f_op_actor_mng functions

* minor JSystem work
2024-11-29 18:24:26 +02:00

14 lines
414 B
C++

/**
* f_pc_method_iter.cpp
* Framework - Process Method Iteration
*/
#include "SSystem/SComponent/c_list_iter.h"
#include "f_pc/f_pc_method_iter.h"
/* 80023764-80023788 0024+00 s=0 e=1 z=0 None .text fpcMtdIt_Method__FP15node_list_classPFPv_i
*/
int fpcMtdIt_Method(node_list_class* i_nodeList, fpcMtdIt_MethodFunc i_methods) {
return cLsIt_Method(i_nodeList, (cNdIt_MethodFunc)i_methods, NULL);
}