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
8
namespace
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
}
Grindstone::Editor::ImguiEditor::TaskPanel
Definition
TaskPanel.hpp:9
sources
code
Editor
ImguiEditor
TaskPanel.hpp
Generated by
1.12.0