mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2025-02-17 11:08:23 +00:00
24 lines
625 B
C#
24 lines
625 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UWUVCI_AIO_WPF.Classes;
|
|
using UWUVCI_AIO_WPF.Classes.ENUM;
|
|
|
|
namespace UWUVCI_AIO_WPF
|
|
{
|
|
[Serializable]
|
|
class GameConfig
|
|
{
|
|
public GameConsole Console { get; set; }
|
|
public GameBases BaseRom { get; set; }
|
|
public string GameName { get; set; }
|
|
public PNGTGA TGAIco { get; set; }
|
|
public PNGTGA TGADrc { get; set; }
|
|
public PNGTGA TGATv { get; set; }
|
|
public PNGTGA TGALog { get; set; }
|
|
public N64Conf N64Stuff { get; set; }
|
|
|
|
}
|
|
}
|