blob: 2d720a96093a9b9f6c5e9e18ce8b06e22da42cce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef SCENE_HPP
#define SCENE_HPP
#include <SFML/Graphics.hpp>
class Scene
{
public:
Scene() = delete;
virtual void render() = 0;
virtual void resize(const sf::Event::SizeEvent &size) = 0;
virtual void click(const sf::Event::MouseButtonEvent &click) {}
virtual void keyPress(const sf::Event::KeyEvent &event) {}
protected:
float _zoom = 1;
sf::RenderWindow &_window;
Scene(sf::RenderWindow &window) : _window(window) {}
};
#endif
|