mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-24 03:53:03 +00:00
15 lines
319 B
C#
15 lines
319 B
C#
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; }
|
|
}
|
|
}
|