mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-01 01:08:48 -04:00
24b72a5302
* cleanup f_pc files * cleanup f_op files * fix a couple f_op_actor_mng functions * minor JSystem work
14 lines
414 B
C++
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);
|
|
}
|