/*
* AP(r) Computer Science GridWorld Case Study:
* Copyright(c) 2005-2006 Cay S. Horstmann (http://horstmann.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.
*
* @author Cay Horstmann
* @author Chris Nevison
* @author Barbara Cloud Wells
*/
import info.gridworld.actor.ActorWorld;
import info.gridworld.grid.Location;
import java.awt.Color;
/**
* This class runs a world that contains box bugs. <br />
* This class is not tested on the AP CS A and AB exams.
*/
public class iBugRun
{
public static void main(String[] args)
{
ActorWorld world = new ActorWorld();
iBoxBug alice = new iBoxBug(5);
alice.setColor(Color.ORANGE);
iBoxBug2 bob = new iBoxBug2 (5);
bob.setColor(Color.RED);
world.add(new Location(1, 4), alice);
world.add(new Location(7, 6), bob);
world.show();
}
}
* AP(r) Computer Science GridWorld Case Study:
* Copyright(c) 2005-2006 Cay S. Horstmann (http://horstmann.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.
*
* @author Cay Horstmann
* @author Chris Nevison
* @author Barbara Cloud Wells
*/
import info.gridworld.actor.ActorWorld;
import info.gridworld.grid.Location;
import java.awt.Color;
/**
* This class runs a world that contains box bugs. <br />
* This class is not tested on the AP CS A and AB exams.
*/
public class iBugRun
{
public static void main(String[] args)
{
ActorWorld world = new ActorWorld();
iBoxBug alice = new iBoxBug(5);
alice.setColor(Color.ORANGE);
iBoxBug2 bob = new iBoxBug2 (5);
bob.setColor(Color.RED);
world.add(new Location(1, 4), alice);
world.add(new Location(7, 6), bob);
world.show();
}
}
(0) Comments
Post a Comment