package example;

import xooga.model.game.Game;
import xooga.model.level.Level;

/**
 * 
 * @author Jadrian Miles
 * @version Nov 15, 2004
 */
public class TestGame extends Game {
    
    public TestGame(Level l) {
        super(l);
    }
    
    protected boolean won() {
        return true;
    }
    
    protected boolean lost() {
        return false;
    }
    
    protected void doWinLevel() {
        System.out.println("The game claims you've won the level.");
    }
    
    protected void doLoseLevel() {
        System.out.println("The game claims you've lost the level.");
    }
    
    protected void doWinGame() {
        System.out.println("The game claims you've won.");
    }
    
    protected void doLoseGame() {
        System.out.println("The game claims you've lost.");
    }

}
