Line | |
---|
1 | /* Copyright 2012 Malcolm Herring
|
---|
2 | *
|
---|
3 | * This is free software: you can redistribute it and/or modify
|
---|
4 | * it under the terms of the GNU General Public License as published by
|
---|
5 | * the Free Software Foundation, version 3 of the License.
|
---|
6 | *
|
---|
7 | * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>.
|
---|
8 | */
|
---|
9 |
|
---|
10 | package symbols;
|
---|
11 |
|
---|
12 | import java.util.ArrayList;
|
---|
13 |
|
---|
14 | import symbols.Symbols.Instr;
|
---|
15 |
|
---|
16 | public class Facilities {
|
---|
17 | public static final ArrayList<Instr> Boatlift = new ArrayList<Instr>();//was Crane
|
---|
18 | public static final ArrayList<Instr> Boatyard = new ArrayList<Instr>();
|
---|
19 | public static final ArrayList<Instr> Chandler = new ArrayList<Instr>();
|
---|
20 | public static final ArrayList<Instr> Fuel = new ArrayList<Instr>();
|
---|
21 | public static final ArrayList<Instr> Laundrette = new ArrayList<Instr>();
|
---|
22 | public static final ArrayList<Instr> PumpOut = new ArrayList<Instr>();
|
---|
23 | public static final ArrayList<Instr> SailingClub = new ArrayList<Instr>();
|
---|
24 | public static final ArrayList<Instr> Shower = new ArrayList<Instr>();
|
---|
25 | public static final ArrayList<Instr> Slipway = new ArrayList<Instr>();
|
---|
26 | public static final ArrayList<Instr> Toilet = new ArrayList<Instr>();
|
---|
27 | public static final ArrayList<Instr> VisitorBerth = new ArrayList<Instr>();
|
---|
28 | public static final ArrayList<Instr> VisitorMooring = new ArrayList<Instr>();
|
---|
29 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.