* Initializes a base facility of the specified type. * @param rules Pointer to ruleset. * @param base Pointer to base of origin. */
| 29 | * @param base Pointer to base of origin. |
| 30 | */ |
| 31 | BaseFacility::BaseFacility(RuleBaseFacility *rules, Base *base) : _rules(rules), _base(base), _x(-1), _y(-1), _buildTime(0), _craftForDrawing(0) |
| 32 | { |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * |
nothing calls this directly
no outgoing calls
no test coverage detected