13 lines
274 B
C#
13 lines
274 B
C#
![]() |
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));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|