Welcome to SPACE: Space Program for Aeronautical Collection and Exploration. You are in charge of the Rover Control Center. All rovers on Moon and Mars are under your direction!
This project will show you some ways in which references, inheritance, interfaces, and arrays can help you be a better C# programmer.
When you start this project you don’t need to read through the class definitions. In fact, the project will tell you when you need to look. To start, all you need to know is that MarsRover
and MoonRover
inherit from Rover
:
class MoonRover : Rover
class MarsRover : Rover