/* 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, Stephan Lienhard co-programmer: */ /* this is for debug output. It just says, that all calls to PRINT() belong to the DEBUG_MODULE_MEDIA module For more information refere to https://www.orxonox.net/cgi-bin/trac.cgi/wiki/DebugOutput */ #define DEBUG_MODULE_MEDIA /* include your own header */ #include "movie_player.h" /* header for debug output */ #include "debug.h" /** * Default constructor */ MoviePlayer::MoviePlayer(const char* filename) { } /** * Default destructor */ MoviePlayer::~MoviePlayer() { } void MoviePlayer::start(unsigned int start_frame) { } void MoviePlayer::resume() { } void MoviePlayer::pause() { } void MoviePlayer::stop() { } void MoviePlayer::tick(float time) { } const void MoviePlayer::draw() { } void MoviePlayer::setSpeed(float speed) { } float MoviePlayer::getSpeed() { }