Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Offsets.cs « CoolgirlCombiner « tools_sources - github.com/coolgirl-multicart/coolgirl-multirom-builder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc87fd9efac8324353383ec1d93ceab008a29c0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Text.Json.Serialization;

namespace com.clusterrr.Famicom.CoolGirl
{
    class Offsets
    {
        [JsonPropertyName("size")]
        public int Size { get; set; }
        [JsonPropertyName("rom_count")]
        public int RomCount { get; set; }
        [JsonPropertyName("games_file")]
        public string? GamesFile { get; set; }
        [JsonPropertyName("games")]
        public Game[]? Games { get; set; }
    }
}