mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-30 00:16:19 -04:00
23 lines
429 B
C++
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),
|
|
};
|