/* 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 Beacons {
	public static final ArrayList<Instr> Beacon = new ArrayList<Instr>();
	public static final ArrayList<Instr> Cairn = new ArrayList<Instr>();
	public static final ArrayList<Instr> LightMajor = new ArrayList<Instr>();
	public static final ArrayList<Instr> LightMinor = new ArrayList<Instr>();
	public static final ArrayList<Instr> PerchPort = new ArrayList<Instr>();
	public static final ArrayList<Instr> PerchStarboard = new ArrayList<Instr>();
	public static final ArrayList<Instr> Stake = new ArrayList<Instr>();
	public static final ArrayList<Instr> Tower = new ArrayList<Instr>();
	public static final ArrayList<Instr> WithyPort = new ArrayList<Instr>();
	public static final ArrayList<Instr> WithyStarboard = new ArrayList<Instr>();

}
