MCPcopy Create free account
hub / github.com/MergHQ/CRYENGINE / Next

Method Next

Code/CryEngine/CryAction/FlashUI/FlashUIEventSystem.cpp:121–131  ·  view source on GitHub ↗

------------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

119
120//------------------------------------------------------------------------------------
121IUIEventSystem* CUIEventSystemIterator::Next(string& sName)
122{
123 IUIEventSystem* pNext = NULL;
124 if (m_currIter != m_endIter)
125 {
126 sName = m_currIter->first;
127 pNext = m_currIter->second;
128 ++m_currIter;
129 }
130 return pNext;
131}
132
133//------------------------------------------------------------------------------------

Callers 2

~CFlashUIEventSystemMethod · 0.45
SendEventMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected