Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
NewComponentInput.hpp
1#pragma once
2
3#include <vector>
4#include <string>
5#include "SuggestedInput.hpp"
6#include "EngineCore/ECS/Entity.hpp"
7
8namespace Grindstone {
9 namespace SceneManagement {
10 class Scene;
11 }
12
13 namespace Editor {
14 namespace ImguiEditor {
16 public:
17 void Render(
18 ECS::Entity entity,
19 std::vector<std::string>& unusedComponentsItems
20 );
21 private:
22 SuggestedInput suggestedInput;
23 };
24 }
25 }
26}
Definition Entity.hpp:14
Definition NewComponentInput.hpp:15
Definition SuggestedInput.hpp:12