BizHawk/BizHawk.Emulation/Consoles/GB/Graphics.cs

14 lines
251 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BizHawk.Emulation.Consoles.GB
{
public partial class GB
{
private byte[] OAM = new byte[1];
private byte[] VRAM = new byte[1];
}
}