12 lines
203 B
C++
12 lines
203 B
C++
// Copyright (c) 2024 Sentry. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
class SentryScreenshotUtils
|
|
{
|
|
public:
|
|
static bool CaptureScreenshot(const FString& ScreenshotSavePath);
|
|
};
|