summaryrefslogtreecommitdiff
path: root/ui/icon.h
blob: 76cd3aefe0099da7b5515c1283f301467b924a0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <filesystem>
#include <glArrays.h>
#include <glm/glm.hpp>

class Image;

class Icon {
public:
	explicit Icon(const std::filesystem::path & fileName);
	explicit Icon(const Image & image);

	void Bind() const;
	const glm::vec2 size;

private:
	glTexture m_texture;
};