/* Header for project 3, Lunar Lander */ #ifndef MOONLANDER_H #define MOONLANDER_H #include <stdio.h> void showWelcome(void); int getFuel(void); double getAltitude(void); void displayLMState(int time, double altitude, double velocity, int fuel, int fuelRate); int getFuelRate(int fuel); double updateAcceleration(double gravity, int fuelRate); double updateAltitude(double altitude, double velocity, double acceleration); double updateVelocity(double velocity, double acceleration); int updateFuel(int fuel, int rate); void displayLMLandingStatus(double velocity); #endif