12 lines
No EOL
146 B
C++
12 lines
No EOL
146 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "PPU.h"
|
|
|
|
class NsfPpu : public PPU
|
|
{
|
|
protected:
|
|
void DrawPixel() override;
|
|
|
|
public:
|
|
using PPU::PPU;
|
|
}; |