Last change
on this file since 11302 was
11071,
checked in by landauf, 9 years ago
|
merged branch cpp11_v3 back to trunk
|
-
Property svn:eol-style set to
native
|
File size:
772 bytes
|
Rev | Line | |
---|
[10369] | 1 | /* |
---|
| 2 | * GravityBombMunition.h |
---|
| 3 | * |
---|
| 4 | * Created on: Apr 16, 2015 |
---|
| 5 | * Author: meggiman |
---|
| 6 | */ |
---|
| 7 | |
---|
| 8 | #ifndef GRAVITYBOMBMUNITION_H_ |
---|
| 9 | #define GRAVITYBOMBMUNITION_H_ |
---|
| 10 | |
---|
| 11 | #include "weapons/WeaponsPrereqs.h" |
---|
| 12 | #include "weaponsystem/Munition.h" |
---|
| 13 | |
---|
| 14 | namespace orxonox |
---|
| 15 | { |
---|
[10601] | 16 | /** |
---|
| 17 | * @class GravityBombMunition |
---|
| 18 | * |
---|
| 19 | * @brief This class is used to set the behaviour of various |
---|
| 20 | * munition specific attributes of the GravityBomb like max count of munition per magazine. |
---|
| 21 | * |
---|
| 22 | * @author Manuel |
---|
| 23 | * @date 23.05.2015 |
---|
| 24 | */ |
---|
| 25 | class _WeaponsExport GravityBombMunition : public Munition |
---|
[10369] | 26 | { |
---|
| 27 | public: |
---|
[10601] | 28 | GravityBombMunition(Context* context); |
---|
[11071] | 29 | virtual ~GravityBombMunition() = default; |
---|
[10369] | 30 | }; |
---|
| 31 | |
---|
| 32 | } |
---|
| 33 | |
---|
| 34 | |
---|
| 35 | #endif /* GRAVITYBOMBMUNITION_H_ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.