public AwarenessController(AbstractPlatform platform)
        {
            Platform = platform;
            Platform.ApplicationLaunched += ApplicationLaunched;
            Platform.ApplicationWillQuit += ApplicationWillQuit;

            BreakTimer = new BreakTimer(Platform);
            BreakTimer.BreakSuggested += BreakSuggested;

            BowlPlayer = new BowlPlayer(Platform);
        }
        public AwarenessController(AbstractPlatform platform)
        {
            Platform = platform;
            Platform.ApplicationLaunched += ApplicationLaunched;
            Platform.ApplicationWillQuit += ApplicationWillQuit;

            BreakTimer = new BreakTimer (Platform);
            BreakTimer.BreakSuggested += BreakSuggested;

            BowlPlayer = new BowlPlayer (Platform);
        }