Move everything under the guecs/ directory in src/ so that it meshes better with other projects.

This commit is contained in:
Zed A. Shaw 2025-05-08 11:20:00 -04:00
parent f520f0bade
commit 3bc05ad164
30 changed files with 74 additions and 73 deletions

View file

@ -1,16 +0,0 @@
#include "guecs.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();
};
}