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