/**
 * Runner.java  05/26/07
 *
 * @author - Robert Glen Martin
 * @author - School for the Talented and Gifted
 * @author - Dallas ISD
 *
 * Copyright(c) 2007 Robert Glen Martin
 * (http://martin.apluscomputerscience.com/)
 *
 * This code is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

import info.gridworld.actor.ActorWorld;
import info.gridworld.actor.Actor;
import info.gridworld.actor.Bug;
import info.gridworld.actor.Rock;
import info.gridworld.actor.Critter;

public class Runner

{
	public static void main(String[] args)
	{
        ActorWorld world = new ActorWorld(
        	new TreeBoundedGrid<Actor>(6, 8));

		world.add(new Bug());
		world.add(new Bug());
		world.add(new Bug());
		world.add(new Rock());
		world.add(new Rock());
		world.add(new Rock());
		world.add(new Critter());
		world.add(new Critter());
		world.add(new Critter());
        world.show();
	}
}