UWUVCI-AIO-WPF/UWUVCI AIO WPF/Classes/GameConfig.cs

43 lines
909 B
C#
Raw Normal View History

using GameBaseClassLibrary;
using System;
2020-03-01 14:40:36 +00:00
using UWUVCI_AIO_WPF.Classes;
namespace UWUVCI_AIO_WPF
{
[Serializable]
public class GameConfig
2020-03-01 14:40:36 +00:00
{
2020-04-21 02:05:19 +00:00
public GameConfig Clone()
{
return this.MemberwiseClone() as GameConfig;
}
public GameConsoles Console { get; set; }
2020-03-01 14:40:36 +00:00
public GameBases BaseRom { get; set; }
private string cBasePath;
public string CBasePath
{
get { return cBasePath; }
set { cBasePath = value;
2020-04-06 19:30:31 +00:00
}
}
2020-04-25 06:40:38 +00:00
2020-03-01 14:40:36 +00:00
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();
2020-03-01 14:40:36 +00:00
}
}