TazGraph Project v0.1.0
Loading...
Searching...
No Matches
SimDumpData.h
1#pragma once
2
3#include "../../../UtilComponents.h"
4
5class SimDumpData : public Component //transform as in graphics, we have rotation and scale
6{
7public:
8 std::string string_id = "";
9
10
12 {
13 }
14
15 SimDumpData(std::string exampleString)
16 {
17 string_id = exampleString;
18 }
19
20
21 void init() override
22 {
23 }
24 void update(float deltaTime) override
25 {
26
27
28
29 }
30
31 std::string GetComponentName() override {
32 return "SimDumpData";
33 }
34
35 void showGUI(std::vector<BaseComponent*> otherComponents = {}) override {
36 ImGui::Separator();
37
38
39 };
40
41 void showGUI(std::vector<BaseComponent*> otherComponents, std::vector<Entity*> otherEntities) override {
42 ImGui::Separator();
43 };
44};
Definition GECS.h:131
Definition SimDumpData.h:6