示例#1
0
 public void ResetWithResponse(SelectGameResponse resp)
 {
     info = resp.machine;
     ResetReelOwner();
     CreateReelIcons();
     UpdateLineColors();
     UpdateLines ();
     UpdatePayoutInfo();
 }
示例#2
0
 void SimplePressed()
 {
     var sg = new SelectGame();
     sg.gameid = "simple";
     ConnectionProxy.Connection.SendMessage(sg, (jdata) => {
         Debug.Log ("Parsed select game response");
         m_resp = new SelectGameResponse(jdata);
         m_shouldTransition = true;
     });
 }