zworld-em/Plugins/sentry-unreal/Source/Sentry/Private/Interface/SentryIdInterface.h

13 lines
193 B
C
Raw Normal View History

2025-05-11 22:07:21 +08:00
// Copyright (c) 2022 Sentry. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
class ISentryId
{
public:
virtual ~ISentryId() = default;
virtual FString ToString() const = 0;
};