/* Copyright 2012 Malcolm Herring
 *
 * This is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, version 3 of the License.
 *
 * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>.
 */

package symbols;

import java.util.ArrayList;

import symbols.Symbols.Instr;

public class Facilities {
	public static final ArrayList<Instr> Boatlift = new ArrayList<Instr>();//was Crane
	public static final ArrayList<Instr> Boatyard = new ArrayList<Instr>();
	public static final ArrayList<Instr> Chandler = new ArrayList<Instr>();
	public static final ArrayList<Instr> Fuel = new ArrayList<Instr>();
	public static final ArrayList<Instr> Laundrette = new ArrayList<Instr>();
	public static final ArrayList<Instr> PumpOut = new ArrayList<Instr>();
	public static final ArrayList<Instr> SailingClub = new ArrayList<Instr>();
	public static final ArrayList<Instr> Shower = new ArrayList<Instr>();
	public static final ArrayList<Instr> Slipway = new ArrayList<Instr>();
	public static final ArrayList<Instr> Toilet = new ArrayList<Instr>();
	public static final ArrayList<Instr> VisitorBerth = new ArrayList<Instr>();
	public static final ArrayList<Instr> VisitorMooring = new ArrayList<Instr>();
}
