world convert progress info

This commit is contained in:
MihailRis
2024-03-01 13:26:09 +03:00
parent 3862dbda66
commit 8001a8bf86
17 changed files with 903 additions and 793 deletions
+6
View File
@@ -1,6 +1,7 @@
#ifndef FRONTEND_GUI_GUI_H_
#define FRONTEND_GUI_GUI_H_
#include <queue>
#include <memory>
#include <vector>
#include <string>
@@ -8,6 +9,8 @@
#include <functional>
#include <unordered_map>
#include "../../delegates.h"
class GfxContext;
class Assets;
class Camera;
@@ -58,6 +61,7 @@ namespace gui {
std::unique_ptr<Camera> uicamera;
std::shared_ptr<PagesControl> menu;
std::queue<runnable> postRunnables;
void actMouse(float delta);
public:
GUI();
@@ -113,6 +117,8 @@ namespace gui {
/** Get the main container */
std::shared_ptr<Container> getContainer() const;
void postRunnable(runnable callback);
};
}