Changeset 7985 in orxonox.OLD for branches/gui/src/story_entities
- Timestamp:
- May 30, 2006, 6:25:19 PM (19 years ago)
- Location:
- branches/gui/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/story_entities/simple_game_menu.cc
r7980 r7985 67 67 ///(this is as modular as it is possible). 68 68 OrxGui::GLGuiPushButton* pb = new OrxGui::GLGuiPushButton("PUSH ME"); 69 pb->connectSignal(OrxGui::Signal_release, this, createExecutor<SimpleGameMenu>(&SimpleGameMenu::enterGui)); 69 //pb->connectSignal(OrxGui::Signal_release, this, createExecutor<SimpleGameMenu>(&SimpleGameMenu::enterGui)); 70 pb->connect(SIGNAL(pb, released), this, SLOT(SimpleGameMenu, enterGui)); 70 71 pb->show(); 71 72 pb->setAbsCoor2D(50, 50); -
branches/gui/src/story_entities/simple_game_menu.h
r7972 r7985 69 69 void quitMenu(); 70 70 71 void TEST( float val) { printf("TEST %f\n", val); }71 void TEST(int val) { printf("TEST %d\n", val); } 72 72 73 73 protected:
Note: See TracChangeset
for help on using the changeset viewer.