Parse settings from request for generation

This commit is contained in:
2025-03-02 00:24:27 -06:00
parent 69eeb8c53b
commit 3d01df1d93
8 changed files with 222 additions and 31 deletions

View File

@@ -0,0 +1,11 @@
namespace ALttPRandomizer.Settings {
using System;
internal class CommonValueAttribute : Attribute {
public CommonValueAttribute(string name) {
Name = name;
}
public string Name { get; }
}
}