Advertisement
LxrdKxnny

HierarchyModule.cpp

May 5th, 2023
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.77 KB | None | 0 0
  1. #include "HierarchyModule.h"
  2. #include "Logging/LogMacros.h"
  3.  
  4. #include "imgui.h"
  5.  
  6. extern "C" __declspec(dllexport) IModuleInterface* CreateModule();
  7.  
  8. IModuleInterface* CreateModule()
  9. {
  10.     return new FHierarchyModule();
  11. }
  12.  
  13. void FHierarchyModule::StartupModule()
  14. {
  15.     FROST_LOG_INFO("Initializing hierarchy module...");
  16.  
  17.     // TODO: Implement module initialization
  18.  
  19.     FROST_LOG_INFO("Initialized hierarchy module!");
  20. }
  21.  
  22. void FHierarchyModule::ShutdownModule()
  23. {
  24.     FROST_LOG_INFO("Shutting down hierarchy module...");
  25.  
  26.     // TODO: Implement module cleanup
  27.  
  28.     FROST_LOG_INFO("Shut down hierarchy module!");
  29. }
  30.  
  31. void FHierarchyModule::RenderHierarchy()
  32. {
  33.     ImGui::Begin("Hierarchy");
  34.  
  35.     // TODO: Implement the hierarchy content
  36.  
  37.     ImGui::End();
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement