mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Use ClrMamePro serializer in current writer
This commit is contained in:
@@ -7,16 +7,16 @@ namespace SabreTools.Models.ClrMamePro
|
||||
public string Status { get; set; }
|
||||
|
||||
/// <remarks>color, (good|imperfect|preliminary)</remarks>
|
||||
public string Color { get; set; }
|
||||
public string? Color { get; set; }
|
||||
|
||||
/// <remarks>sound, (good|imperfect|preliminary)</remarks>
|
||||
public string Sound { get; set; }
|
||||
public string? Sound { get; set; }
|
||||
|
||||
/// <remarks>palettesize, Numeric?</remarks>
|
||||
public string PaletteSize { get; set; }
|
||||
public string? PaletteSize { get; set; }
|
||||
|
||||
/// <remarks>blit, (plain|dirty)</remarks>
|
||||
public string Blit { get; set; }
|
||||
public string? Blit { get; set; }
|
||||
|
||||
#region DO NOT USE IN PRODUCTION
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ namespace SabreTools.Models.ClrMamePro
|
||||
public abstract class GameBase
|
||||
{
|
||||
/// <remarks>name</remarks>
|
||||
public string? Name { get; set; }
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <remarks>description</remarks>
|
||||
public string? Description { get; set; }
|
||||
|
||||
@@ -62,7 +62,7 @@ namespace SabreTools.Models.ClrMamePro
|
||||
public string? Region { get; set; }
|
||||
|
||||
/// <remarks>offs; Appears after Flags</remarks>
|
||||
public string? Offs { get; set; }
|
||||
public string? Offs { get; set; } // TODO: Is this "Offset" elsewhere?
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
Reference in New Issue
Block a user