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

12 lines
164 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 enum Mirroring : byte
{
Horz = 80,
Vert = 68,
OneScA = 0,
OneScB = 85,
Full = 228
}
2024-07-03 15:40:13 +08:00
}