Example #1
0
 public static void StartGame(string bID, int sizeW, int sizeH)
 {
     currentGame = new BoardLogData(){
         boardMatrix = bID,
         boardSizeH = sizeH,
         boardSizeW = sizeW,
         moves = new List<KeyValuePair<int,int>>(),
         startTime = Time.realtimeSinceStartup
     };
 }
Example #2
0
 public static void StartGame(string bID, int sizeW, int sizeH)
 {
     currentGame = new BoardLogData()
     {
         boardMatrix = bID,
         boardSizeH  = sizeH,
         boardSizeW  = sizeW,
         moves       = new List <KeyValuePair <int, int> >(),
         startTime   = Time.realtimeSinceStartup
     };
 }