/// <summary>
        /// To subscribe to GameJustStartedEvent
        /// </summary>
        private void SubscribeToGameJustStartedEvent()
        {
            GameJustStartedDelegate temp = new GameJustStartedDelegate(ReceiveGameJustStartedEvent);

            gameEng.justStartedEvent += temp;
        }
 /// <summary>
 /// To subscribe to GameJustStartedEvent
 /// </summary>
 private void SubscribeToGameJustStartedEvent()
 {
     GameJustStartedDelegate temp = new GameJustStartedDelegate(ReceiveGameJustStartedEvent);
     gameEng.justStartedEvent += temp;
 }