1
0
Fork 0

Rename DisplayExample to WindowExample

This commit is contained in:
Henrik Hautakoski 2023-08-22 07:17:51 +02:00
parent 24da7f45e0
commit 8901257bb6
6 changed files with 25 additions and 19 deletions

View file

@ -1,34 +0,0 @@
#ifndef DISPLAY_EXAMPLE_H
#define DISPLAY_EXAMPLE_H
#include <Spectre/Scene/Camera2D.h>
#include <Spectre/Graphics/Texture.h>
#include <Spectre/Graphics/Sprite.h>
#include <Spectre/System/EventListener.h>
#include <Spectre/Game.h>
class DisplayExample : public sp::Game, sp::EventListener
{
public :
void onEvent(const sp::Event& event);
protected :
void init();
void update(double dt);
void render();
protected :
sp::Window::Mode m_mode;
sp::Camera2D m_camera;
sp::Renderer2D *m_renderer;
sp::Texture m_texture;
sp::Sprite m_sprite;
};
#endif /* DISPLAY_EXAMPLE_H */