예제 #1
0
파일: Replay.cs 프로젝트: pmmikes/HSReplay
 public Replay(string filePath)
 {
     _replay = ReplaySerializer.Deserialize(filePath);
 }
예제 #2
0
 public void Reset()
 {
     Replay = new HearthstoneReplay();
     CurrentGame = new Game();
 }
예제 #3
0
파일: Replay.cs 프로젝트: pmmikes/HSReplay
 public Replay(HearthstoneReplay replay)
 {
     _replay = replay;
 }