12 lines
244 B
C#
12 lines
244 B
C#
namespace ALttPRandomizer.Settings {
|
|
using System;
|
|
|
|
internal class CommonValueAttribute : Attribute {
|
|
public CommonValueAttribute(string name) {
|
|
Name = name;
|
|
}
|
|
|
|
public string Name { get; }
|
|
}
|
|
}
|