Skip to content

Commit c2cf1a3

Browse files
committed
Initial commit
1 parent 3df252e commit c2cf1a3

File tree

4 files changed

+284
-199
lines changed

4 files changed

+284
-199
lines changed

Client/mods/deathmatch/logic/CClientStreamSector.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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);

Client/mods/deathmatch/logic/CClientStreamSectorRow.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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(); }

0 commit comments

Comments
 (0)