Refactor processing running and merge apr2025 generator into

BaseRandomizer
This commit is contained in:
2026-01-24 18:47:33 -06:00
parent e5fd52376e
commit 96cebd2289
12 changed files with 189 additions and 290 deletions

View File

@@ -2,6 +2,6 @@
using System;
public class GenerationFailedException : Exception {
public GenerationFailedException(string message) : base(message) { }
public GenerationFailedException(string message, params string[] args) : base(string.Format(message, args)) { }
}
}