Mesen-X/Core/NsfPpu.h

13 lines
174 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() override;
void SendFrame() override;
2016-06-25 20:46:54 -04:00
public:
using PPU::PPU;
2016-06-25 20:46:54 -04:00
};