4#pragma warning(disable:4996)
5#pragma warning(disable:4265)
6#pragma warning(disable:4701)
8#include "CoreMinimal.h"
9#include "Kismet/BlueprintAsyncActionBase.h"
11#pragma push_macro("ARRAY_COUNT")
14#if USING_CODE_ANALYSIS
15MSVC_PRAGMA(warning(push))
16MSVC_PRAGMA(warning(disable : ALL_CODE_ANALYSIS_WARNINGS))
19#include
"OnlineSubsystemSteam.h"
20#include <steam/steam_api.h>
22#if USING_CODE_ANALYSIS
23MSVC_PRAGMA(warning(pop))
27#pragma pop_macro(
"ARRAY_COUNT")
28#include
"RequestGlobalStats.generated.h"
40 UPROPERTY(BlueprintAssignable)
41 FResponseRequestGlobalStatsDelegate onSuccess;
43 UPROPERTY(BlueprintAssignable)
44 FResponseRequestGlobalStatsDelegate onFailure;
53 UFUNCTION(BlueprintCallable, meta = (BlueprintInternalUseOnly = "true"), Category = "Simple
Steam Stats & Achievements")
57 virtual
void Activate() override;
59 int32 HistoryInDays = 0;
61 void OnGlobalStatsReceived(GlobalStatsReceived_t* pCallback,
bool bIOFailure);
UCLASS(Blueprintable, BlueprintType, ClassGroup=(BucciGames), meta=(BlueprintSpawnableComponent)) class CHATSYSTEM_API UChatSystemComponent
Definition ChatSystemComponent.h:13
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FResponseRequestGlobalStatsDelegate, int32, SteamErrorOutput)
Definition RequestGlobalStats.h:36