Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/wagnis_HS18/src/modules/wagnis/WagnisGameboard.h @ 12049

Last change on this file since 12049 was 12049, checked in by stadlero, 6 years ago

Klassen jetzt hinzugefügt -Oli

File size: 695 bytes
Line 
1
2
3
4
5
6
7
8#ifndef Wagnis_Gameboard_h
9#define Wagnis_Gameboard_h
10
11#include "WagnisProvince.h"
12
13#include "OrxonoxPrereqs.h"
14#include "core/CoreIncludes.h"
15#include "core/XMLPort.h"
16#include "worldentities/StaticEntity.h"
17#include <vector>
18
19
20namespace orxonox
21{
22    class WagnisGameboard : public StaticEntity
23    {
24    public:
25        WagnisGameboard(Context*);
26        virtual ~WagnisGameboard();
27        virtual void XMLPort(Element&,XMLPort::Mode);
28
29        void setPosition(const Vector3&) override;
30        void setOrientation(const Quaternion&) override;
31
32   
33    private:
34        std::vector<WagnisProvince*> provs;
35        Vector3 position;
36        Quaternion orientation;
37    };
38}
39
40
41#endif
Note: See TracBrowser for help on using the repository browser.