2023-07-13 13:16:37 -04:00
|
|
|
namespace SabreTools.Serialization
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2023-07-29 00:06:31 -04:00
|
|
|
/// Separated value serializer/deserializer for AttractMode romlists
|
2023-07-13 13:16:37 -04:00
|
|
|
/// </summary>
|
2023-07-29 00:06:31 -04:00
|
|
|
public partial class AttractMode
|
2023-07-13 13:16:37 -04:00
|
|
|
{
|
|
|
|
|
private const string HeaderWithoutRomname = "#Name;Title;Emulator;CloneOf;Year;Manufacturer;Category;Players;Rotation;Control;Status;DisplayCount;DisplayType;AltRomname;AltTitle;Extra;Buttons";
|
|
|
|
|
private const int HeaderWithoutRomnameCount = 17;
|
|
|
|
|
|
|
|
|
|
private const string HeaderWithRomname = "#Romname;Title;Emulator;Cloneof;Year;Manufacturer;Category;Players;Rotation;Control;Status;DisplayCount;DisplayType;AltRomname;AltTitle;Extra;Buttons;Favourite;Tags;PlayedCount;PlayedTime;FileIsAvailable";
|
|
|
|
|
private const int HeaderWithRomnameCount = 22;
|
|
|
|
|
}
|
|
|
|
|
}
|