mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[Machine] Add new MAME vars for machine
This commit is contained in:
@@ -15,6 +15,9 @@
|
|||||||
protected string _sampleOf;
|
protected string _sampleOf;
|
||||||
protected string _sourceFile;
|
protected string _sourceFile;
|
||||||
protected bool _isBios;
|
protected bool _isBios;
|
||||||
|
protected bool _isDevice;
|
||||||
|
protected bool _isMechanical;
|
||||||
|
protected bool _runnable;
|
||||||
protected string _board;
|
protected string _board;
|
||||||
protected string _rebuildTo;
|
protected string _rebuildTo;
|
||||||
|
|
||||||
@@ -73,6 +76,21 @@
|
|||||||
get { return _isBios; }
|
get { return _isBios; }
|
||||||
set { _isBios = value; }
|
set { _isBios = value; }
|
||||||
}
|
}
|
||||||
|
public bool IsDevice
|
||||||
|
{
|
||||||
|
get { return _isDevice; }
|
||||||
|
set { _isDevice = value; }
|
||||||
|
}
|
||||||
|
public bool IsMechanical
|
||||||
|
{
|
||||||
|
get { return _isMechanical; }
|
||||||
|
set { _isMechanical = value; }
|
||||||
|
}
|
||||||
|
public bool Runnable
|
||||||
|
{
|
||||||
|
get { return _runnable; }
|
||||||
|
set { _runnable = value; }
|
||||||
|
}
|
||||||
public string Board
|
public string Board
|
||||||
{
|
{
|
||||||
get { return _board; }
|
get { return _board; }
|
||||||
@@ -95,6 +113,7 @@
|
|||||||
{
|
{
|
||||||
_name = "";
|
_name = "";
|
||||||
_description = "";
|
_description = "";
|
||||||
|
_runnable = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -106,6 +125,7 @@
|
|||||||
{
|
{
|
||||||
_name = name;
|
_name = name;
|
||||||
_description = description;
|
_description = description;
|
||||||
|
_runnable = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
Reference in New Issue
Block a user