Last change
on this file since 10422 was
10369,
checked in by meggiman, 10 years ago
|
Alle Klassen implementiert um die Waffe abzufeuern. Noch sehr fehlerhaft.
|
File size:
606 bytes
|
Rev | Line | |
---|
[10369] | 1 | /* |
---|
| 2 | * GravityBombMunition.cc |
---|
| 3 | * |
---|
| 4 | * Created on: Apr 16, 2015 |
---|
| 5 | * Author: meggiman |
---|
| 6 | */ |
---|
| 7 | #include "GravityBombMunition.h" |
---|
| 8 | #include "core/CoreIncludes.h" |
---|
| 9 | |
---|
| 10 | namespace orxonox |
---|
| 11 | { |
---|
| 12 | RegisterClass(GravityBombMunition); |
---|
| 13 | |
---|
| 14 | GravityBombMunition::GravityBombMunition(Context* context) : Munition(context) |
---|
| 15 | { |
---|
| 16 | RegisterObject(GravityBombMunition); |
---|
| 17 | this->maxMunitionPerMagazine_ = 1; |
---|
| 18 | this->maxMagazines_ = 30; |
---|
| 19 | this->magazines_ = 10; |
---|
| 20 | |
---|
| 21 | this->bUseSeparateMagazines_ = false; |
---|
| 22 | this->bStackMunition_ = true; |
---|
| 23 | |
---|
| 24 | this->bAllowMunitionRefilling_ = true; |
---|
| 25 | this->bAllowMultiMunitionRemovementUnderflow_ = false; |
---|
| 26 | } |
---|
| 27 | |
---|
| 28 | } |
---|
| 29 | |
---|
| 30 | |
---|
| 31 | |
---|
| 32 | |
---|
Note: See
TracBrowser
for help on using the repository browser.