NazaraImgui/include/NazaraImgui/ImguiHandler.hpp

15 lines
237 B
C++

#pragma once
/*
ImguiHandler.hpp
Inherit from this base class for your Imgui code to be called by the Imgui renderer
*/
namespace Nz
{
struct ImguiHandler
{
public:
virtual void OnRenderImgui() = 0;
};
}