You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
410 B
17 lines
410 B
#include "guecs/ui.hpp"
|
|
|
|
namespace sfml {
|
|
class Backend : public guecs::Backend {
|
|
int $shaders_version = 0;
|
|
|
|
public:
|
|
|
|
Backend();
|
|
guecs::SpriteTexture texture_get(const string& name);
|
|
void sound_play(const string& name);
|
|
void sound_stop(const string& name);
|
|
std::shared_ptr<sf::Shader> shader_get(const std::string& name);
|
|
bool shader_updated();
|
|
guecs::Theme theme();
|
|
};
|
|
}
|
|
|