Esempio n. 1
0
 protected virtual void OnReplayAdded(string path)
 {
     _log.Debug($"Detected new replay: {path}");
     ReplayAdded?.Invoke(this, new EventArgs <string>(path));
 }
Esempio n. 2
0
 protected virtual void OnReplayAdded(string path)
 {
     _log.Debug($"Detected new replay: {path}");
     LatestReplayTime = File.GetCreationTime(path);
     ReplayAdded?.Invoke(this, new EventArgs <string>(path));
 }