public StateTable_v1()
 {
     for (int i = 0; i < _stateRows.Length; i++)
     {
         _stateRows[i] = new StateRow();
     }
 }
 public void Reset()
 {
     _stateRows = new StateRow[7];
     for (int i = 0; i < _stateRows.Length; i++)
     {
         _stateRows[i] = new StateRow();
     }
 }