20 lines
261 B
C#
20 lines
261 B
C#
|
namespace MyNes.Core
|
||
|
{
|
||
|
public struct GameGenieCode
|
||
|
{
|
||
|
public string Name;
|
||
|
|
||
|
public string Descreption;
|
||
|
|
||
|
public int Address;
|
||
|
|
||
|
public byte Compare;
|
||
|
|
||
|
public byte Value;
|
||
|
|
||
|
public bool IsCompare;
|
||
|
|
||
|
public bool Enabled;
|
||
|
}
|
||
|
}
|