Advertisement
LxrdKxnny

SceneInteractionModule.cpp

May 6th, 2023
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.47 KB | None | 0 0
  1. #include "SceneInteractionModule.h"
  2. #include "Logging/LogMacros.h"
  3.  
  4. #include "imgui.h"
  5.  
  6. void FSceneInteractionModule::StartupModule()
  7. {
  8.     // TODO: Implement module startup functionality
  9. }
  10.  
  11. void FSceneInteractionModule::ShutdownModule()
  12. {
  13.     FROST_LOG_INFO("FSceneInteractionModule::ShutdownModule");
  14. }
  15.  
  16. void FSceneInteractionModule::RenderSceneInteraction()
  17. {
  18.     ImGui::Begin("Scene");
  19.  
  20.     // TODO: Implement the scene interaction content
  21.  
  22.     ImGui::End();
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement