Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
TaskPanel.hpp
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <Editor/TaskSystem.hpp>
7
8namespace Grindstone::Editor::ImguiEditor {
9 class TaskPanel {
10 public:
11 void Render();
12 void ToggleVisibility();
13 void FetchTasks();
14 std::string GetTaskButtonText();
15 private:
16 std::vector<Task> tasks;
17 bool isShowing = false;
18 size_t currentTaskCount = 0;
19 };
20}