BizHawk/BizHawk.Emulation.Common/CoreAttributes.cs

15 lines
231 B
C#

using System;
namespace BizHawk.Emulation.Common
{
public class CoreAttributes : Attribute
{
public CoreAttributes(string name)
{
CoreName = name;
}
public string CoreName { get; private set; }
}
}