* Creates a blank ruleunit for a certain * type of soldier. * @param type String defining the type. */
| 27 | * @param type String defining the type. |
| 28 | */ |
| 29 | RuleSoldier::RuleSoldier(const std::string &type) : _type(type), _armor(""), _standHeight(0), _kneelHeight(0), _floatHeight(0) |
| 30 | { |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * |
nothing calls this directly
no outgoing calls
no test coverage detected