#include <cluster_bomb.h>
Inheritance diagram for ClusterBombConfig:


Public Member Functions | |
| ClusterBombConfig () | |
| virtual void | LoadXml (xmlpp::Element *elem) |
Public Attributes | |
| uint | nb_fragments |
Definition at line 58 of file cluster_bomb.h.
| ClusterBombConfig::ClusterBombConfig | ( | ) |
Definition at line 127 of file cluster_bomb.cpp.
00127 : 00128 ExplosiveWeaponConfig() 00129 { 00130 nb_fragments = 5; 00131 }
| void ClusterBombConfig::LoadXml | ( | xmlpp::Element * | elem | ) | [virtual] |
Reimplemented from ExplosiveWeaponConfig.
Definition at line 133 of file cluster_bomb.cpp.
00134 { 00135 ExplosiveWeaponConfig::LoadXml(elem); 00136 XmlReader::ReadUint(elem, "nb_fragments", nb_fragments); 00137 }
Here is the call graph for this function:

Definition at line 61 of file cluster_bomb.h.
1.4.7