Files
sdrpp/core/src/gui/dialogs/loading_screen.h
2020-11-30 21:17:36 +01:00

10 lines
188 B
C++

#pragma once
#include <thread>
#include <string>
#include <mutex>
#include <GLFW/glfw3.h>
namespace LoadingScreen {
void setWindow(GLFWwindow* win);
void show(std::string msg);
};