Mesen/Core/NsfPpu.h

19 lines
242 B
C
Raw Normal View History

2016-06-26 00:46:54 +00:00
#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;
2016-06-26 00:46:54 +00:00
};