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