Last change
on this file since 547 was
507,
checked in by nicolape, 17 years ago
|
- Skybox and ambient light load now from level file sample.oxw. Added objects to and methods to parse this tags. Added a tokenizer function to split strings into smaller strings (for reading out the light colours for examle). Moved Tokenizer and String2number into misc directory. deleted old unised xml class
|
File size:
391 bytes
|
Rev | Line | |
---|
[507] | 1 | #ifndef _OBJECT_AMBIENT_H__ |
---|
| 2 | #define _OBJECT_AMBIENT_H__ |
---|
| 3 | |
---|
| 4 | #include "BaseObject.h" |
---|
| 5 | #include "../../tinyxml/tinyxml.h" |
---|
| 6 | |
---|
| 7 | namespace orxonox |
---|
| 8 | { |
---|
| 9 | class Ambient : public BaseObject |
---|
| 10 | { |
---|
| 11 | public: |
---|
| 12 | Ambient(); |
---|
| 13 | virtual ~Ambient(); |
---|
| 14 | |
---|
| 15 | |
---|
| 16 | void loadParams(TiXmlElement* xmlElem); |
---|
| 17 | |
---|
| 18 | private: |
---|
| 19 | |
---|
| 20 | |
---|
| 21 | }; |
---|
| 22 | } |
---|
| 23 | |
---|
| 24 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.