mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-24 03:53:03 +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
28 lines
761 B
C#
28 lines
761 B
C#
using GameBaseClassLibrary;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UWUVCI_AIO_WPF.Classes;
|
|
|
|
namespace UWUVCI_AIO_WPF
|
|
{
|
|
[Serializable]
|
|
class GameConfig : BaseModel
|
|
{
|
|
public GameConsoles Console { get; set; }
|
|
public GameBases BaseRom { get; set; }
|
|
public string CBasePath { get; set; }
|
|
public string GameName { get; set; }
|
|
|
|
|
|
public PNGTGA TGAIco { get; set; } = new PNGTGA();
|
|
|
|
public PNGTGA TGADrc { get; set; } = new PNGTGA();
|
|
public PNGTGA TGATv { get; set; } = new PNGTGA();
|
|
public PNGTGA TGALog { get; set; } = new PNGTGA();
|
|
public N64Conf N64Stuff { get; set; } = new N64Conf();
|
|
|
|
}
|
|
}
|