Just™ Game Engine
imgui_layer.hpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2022 Konstanty Misiak
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7#pragma once
8#include "core/base.hpp"
9
10namespace jng
11{
12 class Window;
13
15 {
16 public:
17 static void init(const Window* window);
18 static void newFrame();
19 static void render();
20 private:
21 ImGuiLayer() = delete;
22 };
23
24} // jng
Definition: imgui_layer.hpp:15
static void render()
Definition: imgui_layer.cpp:53
static void newFrame()
Definition: imgui_layer.cpp:46
static void init(const Window *window)
Definition: imgui_layer.cpp:20
Definition: window.hpp:20
Definition: base.hpp:11