File tree Expand file tree Collapse file tree 4 files changed +284
-199
lines changed
Client/mods/deathmatch/logic Expand file tree Collapse file tree 4 files changed +284
-199
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ class CClientStreamSector
3737 void Remove (CClientStreamElement* pElement) { m_Elements.remove (pElement); }
3838 std::list<CClientStreamElement*>::iterator Begin () { return m_Elements.begin (); }
3939 std::list<CClientStreamElement*>::iterator End () { return m_Elements.end (); }
40+ std::list<CClientStreamElement*>& GetElements () { return m_Elements; }
4041
4142 void AddElements (std::list<CClientStreamElement*>* pList);
4243 void RemoveElements (std::list<CClientStreamElement*>* pList);
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ class CClientStreamSectorRow
2828 std::list<CClientStreamSector*>::iterator Begin () { return m_Sectors.begin (); }
2929 std::list<CClientStreamSector*>::iterator End () { return m_Sectors.end (); }
3030 CClientStreamSector* Front () { return m_Sectors.front (); }
31+ std::list<CClientStreamSector*>& GetList () { return m_Sectors; }
3132 void Add (CClientStreamSector* pSector);
3233 void Remove (CClientStreamSector* pSector);
3334 unsigned int CountSectors () { return m_Sectors.size (); }
You can’t perform that action at this time.
0 commit comments