Last change
on this file since 9135 was
9135,
checked in by mentzerf, 13 years ago
|
+ Added class Tower, later will be used to spawn in towers
|
File size:
681 bytes
|
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 | #ifndef Orxonox_Tower_h |
---|
10 | #define Orxonox_Tower_h |
---|
11 | |
---|
12 | #include "towerdefense/TowerDefensePrereqs.h" |
---|
13 | #include "worldentities/ControllableEntity.h" |
---|
14 | |
---|
15 | namespace orxonox |
---|
16 | { |
---|
17 | class _OrxonoxExport Tower : public ControllableEntity |
---|
18 | { |
---|
19 | public: |
---|
20 | Tower(BaseObject* creator); |
---|
21 | virtual ~Tower() {}; |
---|
22 | |
---|
23 | virtual void moveFrontBack(const Vector2& value); //!< Overloaded the function to steer the bat up and down. |
---|
24 | virtual void moveRightLeft(const Vector2& value); //!< Overloaded the function to steer the bat up and down. |
---|
25 | |
---|
26 | |
---|
27 | |
---|
28 | }; |
---|
29 | } |
---|
30 | |
---|
31 | |
---|
32 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.