Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/atmospheric_engine/src/lib/graphics/effects/volfog_effect.cc @ 7515

Last change on this file since 7515 was 7515, checked in by hdavid, 18 years ago
File size: 1.0 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11### File Specific:
12   main-programmer: hdavid, amaechler
13*/
14
15#include "volfog_effect.h"
16
17#include "util/loading/load_param.h"
18#include "util/loading/factory.h"
19
20#include "glincl.h"
21
22#include "shell_command.h"
23
24using namespace std;
25
26CREATE_FACTORY(VolFogEffect, CL_VOLFOG_EFFECT);
27
28VolFogEffect::VolFogEffect(const TiXmlElement* root)
29{
30  this->setClassID(CL_VOLFOG_EFFECT, "VolFogEffect");
31
32  if (root != NULL)
33    this->loadParams(root);
34jhljkhlkjhlkjh   
35  this->activate();
36}
37
38
39
40VolFogEffect::~VolFogEffdect()
41{
42  this->deactivate();
43}
44
45
46void VolFogEffect::loadParams(const TiXmlElement* root)
47{
48  WeatherEffect::loadParams(root);
49}
50
51bool VolFogEffect::init()
52{}
53
54
55
56bool VolFogEffect::activate()
57{
58
59}
60
61
62
63bool VolFogEffect::deactivate()
64{
65
66}
67
68
Note: See TracBrowser for help on using the repository browser.