Example #1
0
 public Replay(string filePath)
 {
     _replay = ReplaySerializer.Deserialize(filePath);
 }
Example #2
0
 public void Reset()
 {
     Replay = new HearthstoneReplay();
     CurrentGame = new Game();
 }
Example #3
0
 public Replay(HearthstoneReplay replay)
 {
     _replay = replay;
 }