Files
Cog/Plugins/Cog/Source/CogEngine/Public/CogEngineWindow_CommandBindings.h
T
Arnaud Jamin e72504b47a CogWindow: CogWindows are not UObject anymore
CogWindows are now normal object because we want to be able to Ifdef them, and UObject cannot be ifdef. CogWindows were UObject mainly for saving their config. The configs have been moved in separated class, which are UObject.
2023-10-27 02:39:33 -04:00

21 lines
292 B
C++

#pragma once
#include "CoreMinimal.h"
#include "CogWindow.h"
class COGENGINE_API FCogEngineWindow_CommandBindings : public FCogWindow
{
typedef FCogWindow Super;
public:
protected:
virtual void RenderHelp() override;
virtual void RenderContent() override;
private:
};