1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-01 10:11:44 +02:00
GiantsTools/Sdk/Include/ImGui/Public/IImGuiLayer.h
2021-01-23 15:40:09 -08:00

16 lines
248 B
C

#pragma once
struct IImGuiLayer
{
virtual ~IImGuiLayer() { }
virtual void PreBeginFrame() = 0;
virtual void BeginFrame() = 0;
virtual void EndFrame() = 0;
virtual bool WantsControlFocus() const = 0;
virtual bool IsActive() const = 0;
};