/* 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: David Hasenfratz co-programmer: ... this file extends the framework file, so it renders what i want. */ #include "framework.h" #include "light.h" #include "texture_sequence.h" #include "material.h" #include "objModel.h" #include "primitive_model.h" #include #include "resource_manager.h" #include "movie_player.h"; MoviePlayer* movie_player; void Framework::moduleInit(int argc, char** argv) { movie_player = new MoviePlayer(argv[1]); movie_player->printInformation(); } void Framework::moduleEventHandler(SDL_Event* event) { } void Framework::moduleTick(float dt) { } void Framework::moduleDraw(void) const { } void Framework::moduleHelp(void) const { }