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

14 lines
251 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BizHawk.Emulation.Consoles.GB
{
public partial class GB
{
2012-06-15 19:21:46 +00:00
private byte[] OAM = new byte[1];
private byte[] VRAM = new byte[1];
}
}