You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To create definite objects of the game, we need to make a class design. We also need a complete control flow of the game. This can be further discussed through the comment.
The text was updated successfully, but these errors were encountered:
classDiagram
note for Vessel_engine "Engine power is in Kilowatt\nEngine thrust is in Newton"
class Vessel_engine {
-float _engine_power
-float _engine_thrust
-float _thrust_ratio
+float get_power()
+float get_thrust(enum gear)
}
To create definite objects of the game, we need to make a class design. We also need a complete control flow of the game. This can be further discussed through the comment.
The text was updated successfully, but these errors were encountered: