/* orxonox - the future of 3D-vertical-scrollers Copyright (C) 2004 orx This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. ### File Specific: main-programmer: Benjamin Grauer co-programmer: ... this file extends the framework file, so it renders what i want. */ #include "framework.h" #include "fields.h" #include "stdlibincl.h" void Framework::moduleInit(int argc, char** argv) { } void Framework::moduleEventHandler(SDL_Event* event) { switch (event->type) { case SDL_KEYDOWN: switch (event->key.keysym.sym) { case SDLK_i: break; } } } void Framework::moduleTick(float dt) { } void Framework::moduleDraw() const { } void Framework::moduleHelp(void) const { PRINT(0)("\n"); PRINT(0)("i - print debug information of Collision-detection\n"); PRINT(0)("\n"); } void Framework::moduleInitGui(int argc, char** argv) { Window* guiMainWindow = NULL; initGUI(0, NULL); guiMainWindow = new Window("Collision_detection"); { // all the Widgets you need } Window::mainWindow->showall(); Window::mainWindow->setSize(300, 500); }