Example #1
0
 private TidesController(ITidesWindow window)
 {
     this.window   = window;
     this.animator = new MoonAnimator();
     this.isPaused = true;
     this.isFast   = false;
 }
Example #2
0
 public static ITidesController Create(ITidesWindow window)
 {
     return(new TidesController(window));
 }