mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 15:33:37 +00:00
15 lines
361 B
C++
15 lines
361 B
C++
#pragma once
|
|
#include "../Screen.h"
|
|
|
|
class DeathScreen : public Screen {
|
|
public:
|
|
virtual void init() override;
|
|
|
|
protected:
|
|
virtual void keyPressed(char eventCharacter, int eventKey);
|
|
virtual void buttonClicked(Button* button) override;
|
|
|
|
public:
|
|
virtual void render(int xm, int ym, float a) override;
|
|
virtual bool isPauseScreen() override;
|
|
}; |