/** * Created by NewProgrammer on 3/28/15. */ class VideoGame { String color; int price; void start () { // The code to start the game goes here } void stop () { // The code to stop the game goes here } void saveScore(String playerName, int score) { // The code to save score goes here } }