using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Media.Imaging; namespace _6502EmulatorFrontend { class Apple2Display : IDisplay { public WriteableBitmap DisplayCanvas { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public void onUpdateDisplay(object sender, EventArgs e) { throw new NotImplementedException(); } } }