Daniel-Martinez / Tags

Tags
0 stars 0 forks source link

Operator need to know how many missiles left to fire #9

Closed Daniel-Martinez closed 10 years ago

Daniel-Martinez commented 10 years ago

Create a method to status the amount of ammunition that the missile launcher has left to fire.

Created a method to display current status of missile launcher including ammo remaining.

                    case "status":
                        Console.WriteLine("Launcher: " + Poseidon.name + "\n");
                        Console.WriteLine("\tMissiles:  " + Poseidon.getMissles() + " of 4 remain");
                        break;
Daniel-Martinez commented 10 years ago

This requirement has been completed.