implemented saving and loading of routes

This commit is contained in:
Stephan Richter
2020-09-17 01:08:23 +02:00
parent 38463135c8
commit 28ade2f7fa
5 changed files with 128 additions and 35 deletions

View File

@@ -1,6 +1,7 @@
package de.srsoftware.web4rail.tiles;
public abstract class Turnout extends Tile {
public static final String STATE = "state";
public enum State{
LEFT,STRAIGHT,RIGHT,UNDEF;
}