/// <summary>
 /// A callback method subscribed to CS's onStartSpin event.
 /// It is invoked each time a reel starts.
 /// </summary>
 public virtual void OnReelStart(ReelInfo info)
 {
     ShowDebugText("onStartSpin");
     if (info.isFirstReel)
     {
         RefreshRoundInfo();
         RefreshMoney();
     }
 }
 /// <summary>
 /// A callback method subscribed to CS's onStopReel event.
 /// It is invoked each time a reel stops.
 /// ReelInfo contains information like which reel was stopped.
 /// </summary>
 public virtual void OnReelStop(ReelInfo info)
 {
     ShowDebugText("onStopReel");
 }