2020-03-13 22:35:20 +00:00
|
|
|
|
using GameBaseClassLibrary;
|
|
|
|
|
using System;
|
2020-03-01 14:40:36 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UWUVCI_AIO_WPF.Classes;
|
|
|
|
|
|
|
|
|
|
namespace UWUVCI_AIO_WPF
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
2020-04-04 00:41:56 +00:00
|
|
|
|
class GameConfig : BaseModel
|
2020-03-01 14:40:36 +00:00
|
|
|
|
{
|
2020-03-13 22:35:20 +00:00
|
|
|
|
public GameConsoles Console { get; set; }
|
2020-03-01 14:40:36 +00:00
|
|
|
|
public GameBases BaseRom { get; set; }
|
2020-03-08 22:25:34 +00:00
|
|
|
|
public string CBasePath { get; set; }
|
2020-03-01 14:40:36 +00:00
|
|
|
|
public string GameName { get; set; }
|
2020-04-04 00:41:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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();
|
2020-04-04 22:16:55 +00:00
|
|
|
|
public N64Conf N64Stuff { get; set; } = new N64Conf();
|
2020-03-01 14:40:36 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|