Changeset f63aa57 in network-game for client/Client/Window.cpp
- Timestamp:
- Dec 27, 2013, 5:57:25 PM (11 years ago)
- Branches:
- master
- Children:
- 9bfc1cb
- Parents:
- cbc70eb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
client/Client/Window.cpp
rcbc70eb rf63aa57 8 8 Window::~Window(void) 9 9 { 10 for(unsigned int x=0; x<this->vctGui.size(); x++)11 delete this->vctGui[x];12 10 } 13 11 14 void Window::addComponent(GuiComponent *comp)12 GuiComponent* Window::addComponent(GuiComponent* comp) 15 13 { 16 14 this->vctGui.push_back(comp); 15 return comp; 17 16 } 18 17
Note:
See TracChangeset
for help on using the changeset viewer.