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 Landmarks {
|
---|
17 | public static final ArrayList<Instr> Chimney = new ArrayList<Instr>();
|
---|
18 | public static final ArrayList<Instr> Church = new ArrayList<Instr>();
|
---|
19 | public static final ArrayList<Instr> ChurchTower = new ArrayList<Instr>();
|
---|
20 | public static final ArrayList<Instr> Cross = new ArrayList<Instr>();
|
---|
21 | public static final ArrayList<Instr> DishAerial = new ArrayList<Instr>();
|
---|
22 | public static final ArrayList<Instr> Dome = new ArrayList<Instr>();
|
---|
23 | public static final ArrayList<Instr> Flagstaff = new ArrayList<Instr>();
|
---|
24 | public static final ArrayList<Instr> FlareStack = new ArrayList<Instr>();
|
---|
25 | public static final ArrayList<Instr> LandTower = new ArrayList<Instr>();
|
---|
26 | public static final ArrayList<Instr> Mast = new ArrayList<Instr>();
|
---|
27 | public static final ArrayList<Instr> Minaret = new ArrayList<Instr>();
|
---|
28 | public static final ArrayList<Instr> Monument = new ArrayList<Instr>();
|
---|
29 | public static final ArrayList<Instr> RadioMast = new ArrayList<Instr>();
|
---|
30 | public static final ArrayList<Instr> Platform = new ArrayList<Instr>();
|
---|
31 | public static final ArrayList<Instr> Spire = new ArrayList<Instr>();
|
---|
32 | public static final ArrayList<Instr> Temple = new ArrayList<Instr>();
|
---|
33 | public static final ArrayList<Instr> WaterTower = new ArrayList<Instr>();
|
---|
34 | public static final ArrayList<Instr> WindMotor = new ArrayList<Instr>();
|
---|
35 | public static final ArrayList<Instr> Windmill = new ArrayList<Instr>();
|
---|
36 | public static final ArrayList<Instr> Windsock = new ArrayList<Instr>();
|
---|
37 | }
|
---|