package sso.event;

import sso.*;

public class MoveEvent extends java.util.EventObject
{
	protected GameObject	dest;
	protected GameObject	from;

	public MoveEvent(GameObject from, GameObject source, GameObject dest)
	{
		super(source);

		this.from = from;
		this.dest = dest;
	}

	public GameObject getFrom()
	{
		return from;
	}

	public GameObject getDestination()
	{
		return dest;
	}
}
		

