Skip to content
This repository was archived by the owner on Nov 30, 2021. It is now read-only.

Vehicle

Matthew Pohlmann edited this page Jan 1, 2014 · 1 revision

###Data

Structure destination;
Structure currentLocation;

###Messages

public void msgSetDestination (Structure destination)
{
	this.destination = destination;
}

public void msgSetLocation(Structure s)
{
	currentLocation = s;
}

public boolean destinationReached()
{
	return destination == currentLocation;
}
Clone this wiki locally