Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

25 lines
590 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleInterface.h"
class ICrashDebugHelper;
class FCrashDebugHelperModule : public IModuleInterface
{
public:
virtual void StartupModule();
virtual void ShutdownModule();
/** Gets the crash debug helper singleton or returns NULL */
CRASHDEBUGHELPER_API ICrashDebugHelper* Get();
/** Gets a new crash debug helper singleton for use with multiple report sending */
CRASHDEBUGHELPER_API ICrashDebugHelper* GetNew();
private:
class ICrashDebugHelper* CrashDebugHelper;
};