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

Method Next

ogsr_engine/xrGame/ui/UIGameTutorial.cpp:185–200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

183}
184
185void CUISequencer::Next()
186{
187 CUISequenceItem* pCurrItem = m_items.front();
188 bool can_stop = pCurrItem->Stop();
189 if (!can_stop)
190 return;
191
192 m_items.pop_front();
193 delete_data(pCurrItem);
194
195 if (m_items.size())
196 {
197 pCurrItem = m_items.front();
198 pCurrItem->Start();
199 }
200}
201
202bool CUISequencer::GrabInput()
203{

Callers

nothing calls this directly

Calls 5

delete_dataFunction · 0.85
frontMethod · 0.45
StopMethod · 0.45
sizeMethod · 0.45
StartMethod · 0.45

Tested by

no test coverage detected