Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 15, 2006, 1:43:24 PM (19 years ago)
Author:
amaechler
Message:

atmospheric: void etc bugfixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/atmospheric_engine/src/lib/graphics/effects/graphics_effect.cc

    r7193 r8457  
    3232  @todo what to do, if no GraphicsEffect-Slots are open anymore ???
    3333 */
    34 GraphicsEffect::GraphicsEffect(const TiXmlElement* root)
    35 {
    36   this->setClassID(CL_GRAPHICS_EFFECT, "GraphicsEffect");
    37   this->bActivated = false;
     34GraphicsEffect::GraphicsEffect(const TiXmlElement* root) {
     35    this->setClassID(CL_GRAPHICS_EFFECT, "GraphicsEffect");
     36    this->bActivated = false;
    3837}
    3938
     
    4241 *  destroys a GraphicsEffect
    4342 */
    44 GraphicsEffect::~GraphicsEffect()
    45 {
    46 
     43GraphicsEffect::~GraphicsEffect() {
    4744}
    4845
     
    5148 * @param root The XML-element to load the GraphicsEffect from
    5249 */
    53 void GraphicsEffect::loadParams(const TiXmlElement* root)
    54 {
    55   BaseObject::loadParams(root);
     50void GraphicsEffect::loadParams(const TiXmlElement* root) {
     51    BaseObject::loadParams(root);
    5652}
    5753
     
    6056 *  initializes the graphics effect
    6157 */
    62 bool GraphicsEffect::init()
    63 {}
     58void GraphicsEffect::init() {}
    6459
    6560
     
    6863 * draws the effect, if needed
    6964 */
    70 void GraphicsEffect::draw() const
    71 {}
     65void GraphicsEffect::draw() const {}
    7266
    7367
     
    7670 * ticks the effect if there is any time dependancy
    7771 */
    78 void GraphicsEffect::tick(float dt)
    79 {}
     72void GraphicsEffect::tick(float dt) {}
Note: See TracChangeset for help on using the changeset viewer.