Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "SceneInteractionModule.h"
- #include "Logging/LogMacros.h"
- #include "imgui.h"
- void FSceneInteractionModule::StartupModule()
- {
- // TODO: Implement module startup functionality
- }
- void FSceneInteractionModule::ShutdownModule()
- {
- FROST_LOG_INFO("FSceneInteractionModule::ShutdownModule");
- }
- void FSceneInteractionModule::RenderSceneInteraction()
- {
- ImGui::Begin("Scene");
- // TODO: Implement the scene interaction content
- ImGui::End();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement