/** * A Game object is created with parameters that define the name of the game, * the increase in happiness level, and the amount of weight lost * when the game is played. * * The Game class should have a constructor with the following header: * public Game(String name, int happinessIncr, int weightDecr). * * The Game class also has accessor methods for all instance variables * and a method boolean isWinner() that has a 50% chance of returning true * and a 50% chance of returning false. * Write the complete Game class, including the constructor * and any required instance variables and their accessor method * and the method isWinner(). */ public class Game { /** * Activity 3 Part B * @author (your name) * @version (a version number or a date) */ public Game (String name, int happinessIncr, int weightDecr){ } public boolean isWinner(){ return false; } }