1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-03 03:51:45 +02:00
GiantsTools/Sdk/Include/ImGui/Public/IImGuiLayer.h

16 lines
248 B
C
Raw Normal View History

2021-01-24 00:40:09 +01:00
#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;
};