Engine
Frameworkcreatedbymeusableforthecreationofsimplegames.CurrentlysupportsOpenGL(Verysimple)andVulkan.
EngineImGui.hpp
Go to the documentation of this file.
1 #pragma once
2 #include <ThirdParty/EASTL-master/include/EASTL/shared_ptr.h>
3 
4 namespace Engine
5 {
6  class EngineImGui
7  {
8  private:
9  friend class Engine;
10  friend class eastl::shared_ptr<EngineImGui>;
11 
12  EngineImGui();
13  public:
14  ~EngineImGui();
15  private:
16 
17  void Render();
18 
19  bool allowCameraMovement = false;
23  void DevMenu();
27  void CameraMovement() const;
28  };
29 } //namespace Engine
IMGUI_API void Render()
Definition: imgui.cpp:2769