TazGraph Project v0.1.0
Loading...
Searching...
No Matches
NewMapUI.h
1#pragma once
2
3
4#include "../../../UIElement.h"
5
7
8};
9
10class NewMapUI : public UIElement
11{
12private:
13 NewMapConfig config;
14
15public:
16 int newNodesCount = 0;
17 int newLinksCount = 0;
18
19 void setConfig(const NewMapConfig& cfg) { config = cfg; }
20 void OnImGuiRender() override;
21};
Definition NewMapUI.h:11
Definition UIElement.h:21
Definition NewMapUI.h:6