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

20 lines
280 B
C#
Raw Normal View History

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 GameGenieCode
{
public string Name;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public string Descreption;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public int Address;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public byte Compare;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public byte Value;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public bool IsCompare;
2024-07-03 18:15:28 +08:00
2024-07-03 18:22:22 +08:00
public bool Enabled;
}
2024-07-03 15:40:13 +08:00
}