Mesen/Core/NsfPpu.h
Souryo 850102bbdc Input: Added support for ~20 new peripherals (Incomplete, more fixes/changes to come)
Movies: Rewrote format to support all IO devices and console types
Netplay: Now supports all IO devices and console types
2017-11-19 23:08:23 -05:00

19 lines
242 B
C++

#pragma once
#include "stdafx.h"
#include "PPU.h"
class NsfPpu : public PPU
{
protected:
void DrawPixel()
{
}
void SendFrame()
{
MessageManager::SendNotification(ConsoleNotificationType::PpuFrameDone);
}
public:
using PPU::PPU;
};