Files
UnrealEngine/Engine/Plugins/Experimental/RuntimeTelemetry/Source/Public/RuntimeTelemetryModule.h
2025-05-18 13:04:45 +08:00

21 lines
376 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleInterface.h"
#define UE_API RUNTIMETELEMETRY_API
class FRuntimeTelemetryModule : public IModuleInterface
{
public:
// IModuleInterface
UE_API virtual void StartupModule() override;
UE_API virtual void ShutdownModule() override;
private:
};
#undef UE_API