Parse settings from request for generation
This commit is contained in:
11
ALttPRandomizer/Settings/CommonValueAttribute.cs
Normal file
11
ALttPRandomizer/Settings/CommonValueAttribute.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace ALttPRandomizer.Settings {
|
||||
using System;
|
||||
|
||||
internal class CommonValueAttribute : Attribute {
|
||||
public CommonValueAttribute(string name) {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public string Name { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user