CogSample: Add a window with the Team of the selection.

This commit is contained in:
Arnaud Jamin
2023-11-05 01:10:22 -04:00
parent c44171b113
commit 34e08a9e2a
4 changed files with 68 additions and 1 deletions
+26
View File
@@ -0,0 +1,26 @@
#pragma once
#include "CoreMinimal.h"
#include "CogCommon.h"
#if ENABLE_COG
#include "CogWindow.h"
//--------------------------------------------------------------------------------------------------------------------------
class FCogSampleWindow_Team : public FCogWindow
{
typedef FCogWindow Super;
public:
virtual void Initialize() override;
protected:
virtual void RenderHelp() override;
virtual void RenderContent() override;
};
#endif //ENABLE_COG