factor App.java into domain classes

This commit is contained in:
2018-04-06 18:24:19 -07:00
parent 64a13a3727
commit aff8fb8404
11 changed files with 382 additions and 61 deletions

View File

@ -0,0 +1,3 @@
public interface TickProcessor {
public void process(Tick tick);
}