MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / CallFunctions

Function CallFunctions

ogsr_engine/xrGame/ui/UIGameTutorial.cpp:56–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54}
55
56void CallFunctions(xr_vector<luabind::functor<void>>& v)
57{
58 xr_vector<luabind::functor<void>>::iterator it = v.begin();
59 for (; it != v.end(); ++it)
60 {
61 if ((*it).is_valid())
62 (*it)();
63 }
64}
65
66void CUISequenceItem::Start() { CallFunctions(m_start_lua_functions); }
67

Callers 2

StartMethod · 0.85
StopMethod · 0.85

Calls 3

beginMethod · 0.45
endMethod · 0.45
is_validMethod · 0.45

Tested by

no test coverage detected