12 lines
238 B
C++
12 lines
238 B
C++
#ifndef RENDER_HPP_
|
|
#define RENDER_HPP_
|
|
|
|
#include <SFML/Graphics.hpp>
|
|
#include <SFML/Graphics/Text.hpp>
|
|
#include <SFML/System.hpp>
|
|
#include <SFML/Window.hpp>
|
|
|
|
void renderingThread(sf::RenderWindow *window);
|
|
|
|
#endif // #ifndef RENDER_HPP_
|