package sysu.androidclub.campusrichman.events;
import sysu.androidclub.campusrichman.utils.Coordinate;
public class PlayerGoToHospitalEvent extends PlayerEvent {
public Coordinate hospitalPlace;
public PlayerGoToHospitalEvent(int from, int to, Coordinate hospital)
{
super();
subtype = Event.PLAYER_SUB_GOTOHOSPITAL;
hospitalPlace = hospital;
this.from = from;
this.to = to;
}
}
|