mirror of
https://github.com/zeldaret/ss
synced 2026-09-09 11:44:32 -04:00
Match remaining functions in d_main
This commit is contained in:
@@ -35,6 +35,7 @@ public:
|
||||
PROC_FLAG_DELETE = GET_PROC_FLAG(DELETE),
|
||||
PROC_FLAG_DRAW = GET_PROC_FLAG(DRAW)
|
||||
};
|
||||
|
||||
fManager_c(fBase_c *owner) : connect_node(owner), execute_node(owner), draw_node(owner), search_node(owner) {}
|
||||
~fManager_c() {}
|
||||
int getSearchTableNum();
|
||||
@@ -43,6 +44,14 @@ public:
|
||||
static fBase_c *searchBaseByGroupType(u8 groupType, const fBase_c *parent = nullptr);
|
||||
static void mainLoop();
|
||||
|
||||
static void setStopProcFlags(u32 flags) {
|
||||
m_StopProcInf |= flags;
|
||||
}
|
||||
|
||||
static void keepStopProcFlags(u32 flags) {
|
||||
m_StopProcInf &= flags;
|
||||
}
|
||||
|
||||
private:
|
||||
fTrNdBa_c connect_node; ///< The node in ::m_connectManage.
|
||||
fLiNdPrio_c execute_node; ///< The node in ::m_executeManage.
|
||||
|
||||
Reference in New Issue
Block a user