Files
UnrealEngine/Engine/Plugins/ChaosInsights/Source/ChaosInsightsUI/Private/ChaosInsightsUIModule.h
2025-05-18 13:04:45 +08:00

24 lines
408 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleInterface.h"
#include "LockRegionTrack.h"
namespace ChaosInsights
{
class FChaosInsightsUIModule : public IModuleInterface
{
public:
// IModuleInterface interface
virtual void StartupModule() override;
virtual void ShutdownModule() override;
private:
FLockRegionsSharedState TimingViewExtender;
};
}