Files
dusklight/src/f_pc/f_pc_line.cpp
T
2026-01-06 04:45:15 -08:00

23 lines
429 B
C++

/**
* f_pc_line.cpp
* Framework - Process Line
*/
#include "f_pc/f_pc_line.h"
#include "f_pc/f_pc_node.h"
#include "global.h"
static node_list_class l_fpcLn_Line[16];
void fpcLn_Create() {
int i = ARRAY_SIZEU(l_fpcLn_Line);
node_list_class* line_node = l_fpcLn_Line;
while (i-- > 0)
cLs_Create(line_node++);
}
node_lists_tree_class g_fpcLn_Queue = {
l_fpcLn_Line,
ARRAY_SIZEU(l_fpcLn_Line),
};