mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-03-30 03:55:40 +02:00
14 lines
269 B
C++
14 lines
269 B
C++
#pragma once
|
|
#include <imgui/imgui.h>
|
|
#include <stdint.h>
|
|
#include <GL/glew.h>
|
|
|
|
namespace icons {
|
|
extern ImTextureID LOGO;
|
|
extern ImTextureID PLAY;
|
|
extern ImTextureID STOP;
|
|
extern ImTextureID MENU;
|
|
|
|
GLuint loadTexture(char* path);
|
|
void load();
|
|
} |