// Use this for initialization
    protected void Start()
    {
        timerController = timer.GetComponent<TimerController> ();

        if (timer) {
            Debug.Log("STARTING TIMER @ " + this.ToString());
            timerController.SetGameController(this);
            timerController.startTimer();
        }
    }