
/**
 * This class represent 1 entry in vgsales.csv.
 * 
 * As in, it will contain information on the name, which console it has and how many sales it contains.
 * You may also want to include other fields or redefine the constructor.
 */
public class VideoGame
{
 
    private String name;
    private String console;
    private double sales;
    
    /**
     * Constructor for objects of class VideoGame
     */
    public VideoGame(String name, double sales){
        this.name = name;
        this.sales = sales;
    }

    /**
     * Returns the name of the game
     */
    public String getName()
    {
        return this.name;
    }
    
    /**
     * Returns the number of sales in millions
     */
    public double getSales()
    {
        return this.sales;
    }
    
    /**
     * Returns this object as a string ready to be printed. You may find this helpful to implement it.
     */
    public String toString()
    {
        //YOUR CODE HERE
        return "";
    }
}
