/*
 * @topic T10400 Feb 7, 2013 Product Inheritance Demo
 * @brief Main application class
*/

package hw2;

public class Hw2Main {
    public static void main(String[] args) {
        Game doom = new Game(
                123,        // int code
                "Doom v.3", // String description
                19.50,      // double price
                "ID",       // String publisher,
                "M"         // String rating
                );
    }//main
}//class Hw2Main