BizHawk/BizHawk.Client.EmuHawk/ToolAttributes.cs

20 lines
450 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace BizHawk.Client.EmuHawk
{
[AttributeUsage(AttributeTargets.Class)]
public class ToolAttributes : Attribute
{
public ToolAttributes(bool released, string[] supportedSystems)
{
Released = released;
SupportedSystems = supportedSystems;
}
public bool Released { get; private set; }
public IEnumerable<string> SupportedSystems { get; private set; }
}
}