mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-12-02 15:59:13 +00:00
0f8d652080
ToDo: Fix Injection logic and Add Logic to Inject Button (Including Image Issue) Fix and Add Packing Logic Add Packing GUI logic Add Custom Base support ("LOADIINE") Add Custom Base support (NUS) Implement Configs feature Add AutoUpdater.NET Go live in Beta? [MAYBE] Implement Downloading as a Task/Thread [MAYBE] Check if Downloaded Bases Contain the Code Content and Meta folders
34 lines
663 B
C#
34 lines
663 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 : BaseModel
|
|
{
|
|
private string iniPath;
|
|
|
|
public string INIPath
|
|
{
|
|
get { return iniPath; }
|
|
set { iniPath = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
private bool darkFilter;
|
|
|
|
public bool DarkFilter
|
|
{
|
|
get { return darkFilter; }
|
|
set { darkFilter = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
|
|
|
|
public byte[] INIBin { get; set; }
|
|
|
|
}
|
|
}
|