package edu.calpoly.csc480.Wumpus.Agent;

import com.bcurry.www.util.*;

public class Path extends FastList {
	public Path() {
	}

	public Action.Move peek() {
		return (size() > 0 ? (Action.Move)get(0) : null);
	}

	public Action.Move pop()				{return (Action.Move)remove(0);}
	public void push(Action.Move move)	{add(0, move);}
}