Chesto 0.9
A declarative and element-based library for creating GUIs on homebrew'd consoles
ImageElement.hpp
1#pragma once
2
3#include "Texture.hpp"
4#include <string>
5
6class ImageElement : public Texture
7{
8public:
11 ImageElement(std::string path);
12};
ImageElement(std::string path)
Creates a new image element, loading the image from the specified filesystem path.
Definition: ImageElement.cpp:3