/* 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: hdavid, amaechler */ #include "sun_effect.h" #include "util/loading/load_param.h" /** * @param root The XML-element to load the SunEffect from */ SunEffect::SunEffect(const TiXmlElement* root) { // this->setClassID(CL_SUN_EFFECT, "SunEffect"); this->bActivated = false; } /** * destroys a SunEffect */ SunEffect::~SunEffect() { } /** * @param root The XML-element to load the SunEffect from */ void SunEffect::loadParams(const TiXmlElement* root) { BaseObject::loadParams(root); } /** * initializes the graphics effect */ void SunEffect::init() {} /** * draws the effect, if needed */ void SunEffect::draw() const {} /** * ticks the effect if there is any time dependancy */ void SunEffect::tick(float dt) {}