SDRPlusPlus/core/src/gui/icons.h
2020-10-07 22:44:54 +02:00

14 lines
273 B
C++

#pragma once
#include <imgui/imgui.h>
#include <GL/glew.h>
#include <string>
namespace icons {
extern ImTextureID LOGO;
extern ImTextureID PLAY;
extern ImTextureID STOP;
extern ImTextureID MENU;
GLuint loadTexture(std::string path);
void load();
}