Added dummy screen
This commit is contained in:
parent
bc2876d1b5
commit
d0de17afa1
8 changed files with 79 additions and 6 deletions
12
include/screens/DummyScreen.hpp
Normal file
12
include/screens/DummyScreen.hpp
Normal file
|
@ -0,0 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
#include "../Screen.hpp"
|
||||
|
||||
class DummyScreen : public Screen
|
||||
{
|
||||
public:
|
||||
DummyScreen(SDL_Renderer* renderer, int x, int y, int w, int h);
|
||||
|
||||
void Update();
|
||||
void Render(SDL_Renderer* renderer);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue