Fling Engine  0.00.1
Fling Engine is a game engine written in Vulkan
SandboxUI.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <entt/entity/registry.hpp>
4 
5 namespace Sandbox
6 {
10  class SandboxUI
11  {
12  public:
13  SandboxUI() = default;
14  ~SandboxUI() = default;
15 
19  void NewFrame(entt::registry& t_Reg);
20  };
21 } // namespace Sandbox
Owns the drawing of any UI elements for the Sandbox game.
Definition: SandboxUI.h:10
Definition: SandboxEditor.h:5
void NewFrame(entt::registry &t_Reg)
Draw the sandbox game ImGui UI elements.
Definition: SandboxUI.cpp:5
~SandboxUI()=default