@@ -80,51 +80,51 @@ namespace RTE {
8080 // / Default is four.
8181 int GetMaxPassengers () const override { return m_MaxPassengers > -1 ? m_MaxPassengers : 4 ; }
8282
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.
8585 AEmitter* GetRightThruster () const { return m_pRThruster; }
8686
87- // / Sets the right side thruster for this ACDropship .
87+ // / Sets the right side thruster for this ACDropShip .
8888 // / @param newThruster The new thruster to use.
8989 void SetRightThruster (AEmitter* newThruster);
9090
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.
9393 AEmitter* GetLeftThruster () const { return m_pLThruster; }
9494
95- // / Sets the left side thruster for this ACDropship .
95+ // / Sets the left side thruster for this ACDropShip .
9696 // / @param newThruster The new thruster to use.
9797 void SetLeftThruster (AEmitter* newThruster);
9898
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.
101101 AEmitter* GetURightThruster () const { return m_pURThruster; }
102102
103- // / Sets the right side secondary thruster for this ACDropship .
103+ // / Sets the right side secondary thruster for this ACDropShip .
104104 // / @param newThruster The new thruster to use.
105105 void SetURightThruster (AEmitter* newThruster);
106106
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.
109109 AEmitter* GetULeftThruster () const { return m_pULThruster; }
110110
111- // / Sets the left side secondary thruster for this ACDropship .
111+ // / Sets the left side secondary thruster for this ACDropShip .
112112 // / @param newThruster The new thruster to use.
113113 void SetULeftThruster (AEmitter* newThruster);
114114
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.
117117 Attachable* GetLeftHatch () const { return m_pLHatch; }
118118
119- // / Sets the left side hatch for this ACDropship .
119+ // / Sets the left side hatch for this ACDropShip .
120120 // / @param newHatch The new hatch to use.
121121 void SetLeftHatch (Attachable* newHatch);
122122
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.
125125 Attachable* GetRightHatch () const { return m_pRHatch; }
126126
127- // / Sets the right side hatch for this ACDropship .
127+ // / Sets the right side hatch for this ACDropShip .
128128 // / @param newHatch The new hatch to use.
129129 void SetRightHatch (Attachable* newHatch);
130130
@@ -148,12 +148,12 @@ namespace RTE {
148148 // / @return Current lateral control value.
149149 float GetLateralControl () const { return m_LateralControl; }
150150
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.
153153 float GetHoverHeightModifier () const { return m_HoverHeightModifier; }
154154
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.
157157 void SetHoverHeightModifier (float newHoverHeightModifier) { m_HoverHeightModifier = newHoverHeightModifier; }
158158
159159 // / Protected member variable and method declarations
0 commit comments