2020-03-01 15:40:36 +01: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 21:30:31 +02:00
|
|
|
|
|
2020-03-01 15:40:36 +01:00
|
|
|
|
{
|
2020-04-06 21:30:31 +02:00
|
|
|
|
[Serializable]
|
2020-04-17 03:28:14 +02:00
|
|
|
|
public class N64Conf
|
2020-03-01 15:40:36 +01:00
|
|
|
|
{
|
2020-04-05 00:16:55 +02:00
|
|
|
|
private string iniPath = null;
|
2020-04-04 02:41:56 +02:00
|
|
|
|
|
|
|
|
|
public string INIPath
|
|
|
|
|
{
|
|
|
|
|
get { return iniPath; }
|
|
|
|
|
set { iniPath = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-02 19:53:41 +02:00
|
|
|
|
private bool darkFilter = false;
|
2020-04-04 02:41:56 +02:00
|
|
|
|
|
|
|
|
|
public bool DarkFilter
|
|
|
|
|
{
|
|
|
|
|
get { return darkFilter; }
|
|
|
|
|
set { darkFilter = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-02 19:53:41 +02:00
|
|
|
|
private bool wideScreen = false;
|
|
|
|
|
|
|
|
|
|
public bool WideScreen
|
|
|
|
|
{
|
|
|
|
|
get { return wideScreen; }
|
|
|
|
|
set { wideScreen = value; }
|
|
|
|
|
}
|
2020-04-04 02:41:56 +02:00
|
|
|
|
|
2020-03-01 15:40:36 +01:00
|
|
|
|
public byte[] INIBin { get; set; }
|
2020-04-04 02:41:56 +02:00
|
|
|
|
|
2020-03-01 15:40:36 +01:00
|
|
|
|
}
|
|
|
|
|
}
|