AxibugEmuOnline/AxibugEmuOnline.Client/Assets/MyNes.Core/NesCartDatabaseGameInfo.cs

30 lines
597 B
C#
Raw Normal View History

2024-07-03 18:15:28 +08:00
using System.Collections.Generic;
2024-07-03 18:22:22 +08:00
namespace MyNes.Core
2024-07-03 18:15:28 +08:00
{
2024-07-03 18:22:22 +08:00
public struct NesCartDatabaseGameInfo
{
public string Game_Name;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public string Game_AltName;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public string Game_Class;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public string Game_Catalog;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public string Game_Publisher;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public string Game_Developer;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public string Game_Region;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public string Game_Players;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public string Game_ReleaseDate;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public List<NesCartDatabaseCartridgeInfo> Cartridges;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public static NesCartDatabaseGameInfo Empty => default(NesCartDatabaseGameInfo);
}
2024-07-03 15:40:13 +08:00
}