mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-10 05:34:13 +00:00
41 lines
794 B
C#
41 lines
794 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UWUVCI_AIO_WPF.Classes
|
|
|
|
{
|
|
[Serializable]
|
|
public class N64Conf
|
|
{
|
|
private string iniPath = null;
|
|
|
|
public string INIPath
|
|
{
|
|
get { return iniPath; }
|
|
set { iniPath = value;
|
|
}
|
|
}
|
|
private bool darkFilter = false;
|
|
|
|
public bool DarkFilter
|
|
{
|
|
get { return darkFilter; }
|
|
set { darkFilter = value;
|
|
}
|
|
}
|
|
|
|
private bool wideScreen = false;
|
|
|
|
public bool WideScreen
|
|
{
|
|
get { return wideScreen; }
|
|
set { wideScreen = value; }
|
|
}
|
|
|
|
public byte[] INIBin { get; set; }
|
|
|
|
}
|
|
}
|