public LoLRecorder(GameInfo gameinfo) { if (LoLRecorder.Recorders == null) { LoLRecorder.Recorders = new System.Collections.Generic.List <LoLRecorder>(); } this.record = new LoLRecord(); this.record.gameId = gameinfo.GameId; this.record.observerEncryptionKey = gameinfo.ObKey.ToCharArray(); this.record.gamePlatform = gameinfo.PlatformId.ToCharArray(); this.setPlatformAddress(gameinfo.ServerAddress); this.selfGame = false; //this.setPlatformAddress(Utilities.LoLObserveServersIpMapping[new string(this.record.gamePlatform)]); }
public LoLRecordPlayer(LoLRecord playThis) { this.record = playThis; }
public LoLLauncher(string recordFilePath) { this._record = new LoLRecord(); this._record.readFromFile(recordFilePath, false); this._localPlay = true; }
//public event Program.RecordDoneDelegate doneEvent; public LoLRecorder() { this.record = new LoLRecord(); }