Example #1
0
 public static void Export([NotNull] Game game, [NotNull] string filePath, [NotNull] EventLog eventLog, bool compress = false) => ExportFile(game, filePath, eventLog, compress);
Example #2
0
 public static void Export([NotNull] Game game, [NotNull] Stream outputStream, [NotNull] EventLog eventLog, bool compress = false) => ExportInternal(game, outputStream, eventLog, compress);
Example #3
0
 public static string Export([NotNull] Game game, [NotNull] EventLog eventLog, bool compress = false) => Export <EventLog>(game, eventLog, compress);