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

11 lines
129 B
C#
Raw Normal View History

2024-07-03 18:15:28 +08:00
namespace MyNes.Core;
public enum Mirroring : byte
{
Horz = 80,
Vert = 68,
OneScA = 0,
OneScB = 85,
Full = 228
2024-07-03 15:40:13 +08:00
}