@@ -80,51 +80,51 @@ namespace RTE {
80
80
// / Default is four.
81
81
int GetMaxPassengers () const override { return m_MaxPassengers > -1 ? m_MaxPassengers : 4 ; }
82
82
83
- // / Gets the right side thruster of this ACDropship .
84
- // / @return A pointer to the right side thruster of this ACDropship . Ownership is NOT transferred.
83
+ // / Gets the right side thruster of this ACDropShip .
84
+ // / @return A pointer to the right side thruster of this ACDropShip . Ownership is NOT transferred.
85
85
AEmitter* GetRightThruster () const { return m_pRThruster; }
86
86
87
- // / Sets the right side thruster for this ACDropship .
87
+ // / Sets the right side thruster for this ACDropShip .
88
88
// / @param newThruster The new thruster to use.
89
89
void SetRightThruster (AEmitter* newThruster);
90
90
91
- // / Gets the left side thruster of this ACDropship .
92
- // / @return A pointer to the left side thruster of this ACDropship . Ownership is NOT transferred.
91
+ // / Gets the left side thruster of this ACDropShip .
92
+ // / @return A pointer to the left side thruster of this ACDropShip . Ownership is NOT transferred.
93
93
AEmitter* GetLeftThruster () const { return m_pLThruster; }
94
94
95
- // / Sets the left side thruster for this ACDropship .
95
+ // / Sets the left side thruster for this ACDropShip .
96
96
// / @param newThruster The new thruster to use.
97
97
void SetLeftThruster (AEmitter* newThruster);
98
98
99
- // / Gets the right side secondary thruster of this ACDropship .
100
- // / @return A pointer to the right side secondary thruster of this ACDropship . Ownership is NOT transferred.
99
+ // / Gets the right side secondary thruster of this ACDropShip .
100
+ // / @return A pointer to the right side secondary thruster of this ACDropShip . Ownership is NOT transferred.
101
101
AEmitter* GetURightThruster () const { return m_pURThruster; }
102
102
103
- // / Sets the right side secondary thruster for this ACDropship .
103
+ // / Sets the right side secondary thruster for this ACDropShip .
104
104
// / @param newThruster The new thruster to use.
105
105
void SetURightThruster (AEmitter* newThruster);
106
106
107
- // / Gets the left side secondary thruster of this ACDropship .
108
- // / @return A pointer to the left side secondary thruster of this ACDropship . Ownership is NOT transferred.
107
+ // / Gets the left side secondary thruster of this ACDropShip .
108
+ // / @return A pointer to the left side secondary thruster of this ACDropShip . Ownership is NOT transferred.
109
109
AEmitter* GetULeftThruster () const { return m_pULThruster; }
110
110
111
- // / Sets the left side secondary thruster for this ACDropship .
111
+ // / Sets the left side secondary thruster for this ACDropShip .
112
112
// / @param newThruster The new thruster to use.
113
113
void SetULeftThruster (AEmitter* newThruster);
114
114
115
- // / Gets the left side hatch of this ACDropship .
116
- // / @return A pointer to the left side hatch of this ACDropship . Ownership is NOT transferred.
115
+ // / Gets the left side hatch of this ACDropShip .
116
+ // / @return A pointer to the left side hatch of this ACDropShip . Ownership is NOT transferred.
117
117
Attachable* GetLeftHatch () const { return m_pLHatch; }
118
118
119
- // / Sets the left side hatch for this ACDropship .
119
+ // / Sets the left side hatch for this ACDropShip .
120
120
// / @param newHatch The new hatch to use.
121
121
void SetLeftHatch (Attachable* newHatch);
122
122
123
- // / Gets the right side hatch of this ACDropship .
124
- // / @return A pointer to the right side hatch of this ACDropship . Ownership is NOT transferred.
123
+ // / Gets the right side hatch of this ACDropShip .
124
+ // / @return A pointer to the right side hatch of this ACDropShip . Ownership is NOT transferred.
125
125
Attachable* GetRightHatch () const { return m_pRHatch; }
126
126
127
- // / Sets the right side hatch for this ACDropship .
127
+ // / Sets the right side hatch for this ACDropShip .
128
128
// / @param newHatch The new hatch to use.
129
129
void SetRightHatch (Attachable* newHatch);
130
130
@@ -148,12 +148,12 @@ namespace RTE {
148
148
// / @return Current lateral control value.
149
149
float GetLateralControl () const { return m_LateralControl; }
150
150
151
- // / Gets the modifier for height at which this ACDropship should hover above terrain.
152
- // / @return The modifier for height at which this ACDropship should hover above terrain.
151
+ // / Gets the modifier for height at which this ACDropShip should hover above terrain.
152
+ // / @return The modifier for height at which this ACDropShip should hover above terrain.
153
153
float GetHoverHeightModifier () const { return m_HoverHeightModifier; }
154
154
155
- // / Sets the modifier for height at which this ACDropship should hover above terrain.
156
- // / @param newHoverHeightModifier The new modifier for height at which this ACDropship should hover above terrain.
155
+ // / Sets the modifier for height at which this ACDropShip should hover above terrain.
156
+ // / @param newHoverHeightModifier The new modifier for height at which this ACDropShip should hover above terrain.
157
157
void SetHoverHeightModifier (float newHoverHeightModifier) { m_HoverHeightModifier = newHoverHeightModifier; }
158
158
159
159
// / Protected member variable and method declarations
0 commit comments