2020-03-01 14:40:36 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace UWUVCI_AIO_WPF.Classes
|
2020-04-06 19:30:31 +00:00
|
|
|
|
|
2020-03-01 14:40:36 +00:00
|
|
|
|
{
|
2020-04-06 19:30:31 +00:00
|
|
|
|
[Serializable]
|
2020-04-17 01:28:14 +00:00
|
|
|
|
public class N64Conf
|
2020-03-01 14:40:36 +00:00
|
|
|
|
{
|
2020-04-04 22:16:55 +00:00
|
|
|
|
private string iniPath = null;
|
2020-04-04 00:41:56 +00:00
|
|
|
|
|
|
|
|
|
public string INIPath
|
|
|
|
|
{
|
|
|
|
|
get { return iniPath; }
|
|
|
|
|
set { iniPath = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private bool darkFilter;
|
|
|
|
|
|
|
|
|
|
public bool DarkFilter
|
|
|
|
|
{
|
|
|
|
|
get { return darkFilter; }
|
|
|
|
|
set { darkFilter = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-03-01 14:40:36 +00:00
|
|
|
|
public byte[] INIBin { get; set; }
|
2020-04-04 00:41:56 +00:00
|
|
|
|
|
2020-03-01 14:40:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|