2014-04-22 00:38:59 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Emulation.Common
|
|
|
|
|
{
|
|
|
|
|
public class CoreAttributes : Attribute
|
|
|
|
|
{
|
2014-04-25 01:19:57 +00:00
|
|
|
|
public CoreAttributes(string name, string author, bool isPorted = false, bool isReleased = false)
|
2014-04-22 00:38:59 +00:00
|
|
|
|
{
|
|
|
|
|
CoreName = name;
|
2014-04-25 01:19:57 +00:00
|
|
|
|
Author = author;
|
|
|
|
|
Ported = isPorted;
|
|
|
|
|
Released = isReleased;
|
2014-04-22 00:38:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string CoreName { get; private set; }
|
2014-04-25 01:19:57 +00:00
|
|
|
|
public string Author { get; private set; }
|
|
|
|
|
public bool Ported { get; private set; }
|
|
|
|
|
public bool Released { get; private set; }
|
2014-04-22 00:38:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|