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