started work on sprite rendering

This commit is contained in:
Lauchmelder 2022-03-06 23:31:52 +01:00
parent 6fe829d66c
commit ca729613c7
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
10 changed files with 417 additions and 22 deletions

View file

@ -0,0 +1,17 @@
#pragma once
#include "DebugWindow.hpp"
class PPU;
class OAMViewer :
public DebugWindow
{
public:
OAMViewer(Debugger* debugger, PPU* ppu);
virtual void OnRender() override;
private:
PPU* ppu;
};