2014-04-25 01:19:57 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2014-05-31 14:29:27 +00:00
|
|
|
|
namespace BizHawk.Emulation.Common.IEmulatorExtensions
|
2014-04-25 01:19:57 +00:00
|
|
|
|
{
|
|
|
|
|
public static class Extensions
|
|
|
|
|
{
|
|
|
|
|
public static CoreAttributes Attributes(this IEmulator core)
|
|
|
|
|
{
|
|
|
|
|
return (CoreAttributes)Attribute.GetCustomAttribute(core.GetType(), typeof(CoreAttributes));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|