fruitmachine/6502EmulatorFrontend/6502EmulatorFrontend/Apple2Display.cs

31 lines
633 B
C#

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();
}
}
}