Files
UnrealEngine/Engine/Plugins/ChaosInsights/Source/ChaosInsightsUI/Private/ChaosInsightsUIModule.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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;
};
}