reorganized repo to show clear module boundaries

This commit is contained in:
Hartmut Seichter 2023-06-30 22:41:56 +02:00
parent 8e00b668ea
commit 536a639bfd
396 changed files with 355 additions and 391 deletions

View file

@ -1,30 +0,0 @@
#ifndef PW_VISUAL_MESH_RENDERER_HPP
#define PW_VISUAL_MESH_RENDERER_HPP
#include <map>
#include <memory>
namespace paradiso {
struct Sprite;
/**
* @brief a Renderer2D for sprites
*/
struct Renderer final {
Renderer();
~Renderer();
Renderer(const Renderer&) = delete;
bool draw(const Sprite& m);
bool ready() const;
private:
struct impl;
std::unique_ptr<impl> impl_;
};
} // namespace paradiso
#endif