Mesen-X/Core/NsfPpu.h

22 lines
274 B
C
Raw Normal View History

2016-06-25 20:46:54 -04:00
#pragma once
#include "stdafx.h"
#include "PPU.h"
class NsfPpu : public PPU
{
protected:
void DrawPixel()
{
}
void SendFrame()
{
MessageManager::SendNotification(ConsoleNotificationType::PpuFrameDone);
}
public:
NsfPpu(BaseMapper* mapper) : PPU(mapper)
2016-06-25 20:46:54 -04:00
{
2016-06-25 20:46:54 -04:00
}
};