Last change
on this file since 10290 was
9667,
checked in by landauf, 11 years ago
|
merged core6 back to trunk
|
-
Property svn:eol-style set to
native
|
File size:
1.1 KB
|
Line | |
---|
1 | // |
---|
2 | // Tower.h |
---|
3 | // Orxonox |
---|
4 | // |
---|
5 | // Created by Fabian Mentzer on 29.04.12. |
---|
6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. |
---|
7 | // |
---|
8 | |
---|
9 | /** |
---|
10 | @brief |
---|
11 | See TowerDefenseReadme.txt for Information. |
---|
12 | |
---|
13 | @ingroup TowerDefense |
---|
14 | */ |
---|
15 | |
---|
16 | |
---|
17 | #ifndef Orxonox_Tower_h |
---|
18 | #define Orxonox_Tower_h |
---|
19 | |
---|
20 | #include "towerdefense/TowerDefensePrereqs.h" |
---|
21 | #include "worldentities/pawns/SpaceShip.h" |
---|
22 | |
---|
23 | |
---|
24 | namespace orxonox |
---|
25 | { |
---|
26 | class _TowerDefenseExport Tower : public Pawn |
---|
27 | { |
---|
28 | public: |
---|
29 | Tower(Context* context); |
---|
30 | virtual ~Tower() {}; |
---|
31 | |
---|
32 | // Maybe later override these to move towers with cursor keys |
---|
33 | /* |
---|
34 | virtual void moveFrontBack(const Vector2& value); |
---|
35 | virtual void moveRightLeft(const Vector2& value); |
---|
36 | */ |
---|
37 | |
---|
38 | // Overriding these to stop towers from spasing out |
---|
39 | void setOrientation(const Quaternion& orientation); |
---|
40 | virtual void rotateYaw(const Vector2& value); |
---|
41 | virtual void rotatePitch(const Vector2& value); |
---|
42 | virtual void rotateRoll(const Vector2& value); |
---|
43 | |
---|
44 | void setGame(TowerDefense* towerdefense) |
---|
45 | { assert(towerdefense); game_ = towerdefense; } |
---|
46 | private: |
---|
47 | TowerDefense* game_; |
---|
48 | }; |
---|
49 | } |
---|
50 | |
---|
51 | |
---|
52 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.