Changeset 1686 for code/branches/gui/src/core
- Timestamp:
- Aug 31, 2008, 2:37:00 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/core/GameState.h
r1674 r1686 118 118 void deactivate(); 119 119 120 const std::string 121 Operations 122 GameState* 123 GameState* 124 //bool 125 std::map<std::string, GameState*> 126 std::map<GameState*, GameState*> grandchildrenToChildren_;120 const std::string name_; 121 Operations operation_; 122 GameState* parent_; 123 GameState* activeChild_; 124 //bool bPauseParent_; 125 std::map<std::string, GameState*> allChildren_; 126 std::map<GameState*, GameState*> grandchildrenToChildren_; 127 127 }; 128 128 }
Note: See TracChangeset
for help on using the changeset viewer.