/**
* Describes the attributes of a tree.
*
* @author (TK Rogers)
* @version (1-26-10)
*/
public class
Tree {
public int
xpos;
// x-coordinate of a tree
public int
ypos;
// y-coordinate of a tree
Tree (
int
x,
int
y) {
xpos = x;
ypos = y;
}
}