UWUVCI-AIO-WPF/UWUVCI AIO WPF/Classes/N64Conf.cs

16 lines
319 B
C#
Raw Normal View History

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
{
class N64Conf
{
public string INIPath { get; set; }
public byte[] INIBin { get; set; }
public bool DarkFilter { get; set; }
}
}