BizHawk/BizHawk.Emulation.Common/Extensions.cs

13 lines
274 B
C#
Raw Normal View History

using System;
namespace BizHawk.Emulation.Common
{
public static class Extensions
{
public static CoreAttributes Attributes(this IEmulator core)
{
return (CoreAttributes)Attribute.GetCustomAttribute(core.GetType(), typeof(CoreAttributes));
}
}
}