31 lines
740 B
C#
31 lines
740 B
C#
using System;
|
|
|
|
namespace BizHawk.Emulation.Common
|
|
{
|
|
public class CoreAttributes : Attribute
|
|
{
|
|
public CoreAttributes(
|
|
string name,
|
|
string author,
|
|
bool isPorted = false,
|
|
bool isReleased = false,
|
|
string portedVersion = "",
|
|
string portedUrl = "")
|
|
{
|
|
CoreName = name;
|
|
Author = author;
|
|
Ported = isPorted;
|
|
Released = isReleased;
|
|
PortedVersion = portedVersion;
|
|
PortedUrl = portedUrl;
|
|
}
|
|
|
|
public string CoreName { get; private set; }
|
|
public string Author { get; private set; }
|
|
public bool Ported { get; private set; }
|
|
public bool Released { get; private set; }
|
|
public string PortedVersion { get; private set; }
|
|
public string PortedUrl { get; private set; }
|
|
}
|
|
}
|