2014-12-16 23:33:07 +00:00
|
|
|
|
using System;
|
2015-11-14 21:11:13 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-12-16 23:33:07 +00:00
|
|
|
|
|
|
|
|
|
namespace BizHawk.Client.EmuHawk
|
|
|
|
|
{
|
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
|
|
|
public class ToolAttributes : Attribute
|
|
|
|
|
{
|
2015-11-14 21:11:13 +00:00
|
|
|
|
public ToolAttributes(bool released, string[] supportedSystems)
|
2014-12-16 23:33:07 +00:00
|
|
|
|
{
|
|
|
|
|
Released = released;
|
2015-11-14 21:11:13 +00:00
|
|
|
|
SupportedSystems = supportedSystems;
|
2014-12-16 23:33:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Released { get; private set; }
|
2015-11-14 21:11:13 +00:00
|
|
|
|
|
|
|
|
|
public IEnumerable<string> SupportedSystems { get; private set; }
|
2014-12-16 23:33:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|