Cogs.Core
AboutInspector.cpp
1#include "Inspectors.h"
2
3#include "InspectorGuiHelper.h"
4#include "CogsVersion.h"
5
6#include "imgui.h"
7
8namespace Cogs::Core {
9 void aboutCogs(class Context* /*context*/, bool* show)
10 {
11 if (*show == false) return;
12 guiBegin("About Cogs", show);
13
14 ImGui::Text("%s", COGS_LEGAL_COPYRIGHT);
15 ImGui::Text("COGS_VERSION_STRING: %s", COGS_VERSION_STRING);
16 ImGui::Text("COGS_REVISION_STRING: %s", COGS_REVISION_STRING);
17
18 guiEnd();
19 }
20}
Contains the Engine, Renderer, resource managers and other systems needed to run Cogs....