package example;

/**
 * 
 * @author Jadrian Miles
 * @version Nov 15, 2004
 */
public class Tester {
    
    public static void main(String[] args) {
        TestLevel level = new TestLevel();
        TestGame foo = new TestGame(level);
        if(foo.run()) {
            System.out.println("You won!");
        } else {
            System.out.println("You lost!");  // it's a party either way, woo!
        }
    }
}
