source: GTP/trunk/App/Games/Jungle_Rumble/src/SkyBox.h @ 1378

Revision 1378, 489 bytes checked in by giegl, 18 years ago (diff)

GTPD - Jungle Rumble - integrate into GTP SVN structure

Line 
1#pragma once
2#include <vector> // Standard-Vektor einschließen
3#include <string>
4#include <fstream>
5#include "./GameManager.h"
6#include "./Object3d.h"
7#include <boost/shared_ptr.hpp>
8#include <new>
9#include <exception>
10#include "Node.h"
11
12using namespace std;
13
14#define SPTR boost::shared_ptr
15
16class SkyBox : public Node
17{
18public:
19        SkyBox(void);
20        ~SkyBox(void);
21        void generateSkyBox(std::string filename);
22        Object3d* getBoxObject();
23
24private:
25        Object3d * myBox;
26};
Note: See TracBrowser for help on using the repository browser.