1
0
KF2-Dev-Scripts/Engine/Classes/GenericParamListStatEntry.uc

31 lines
1.0 KiB
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class GenericParamListStatEntry extends Object
native;
cpptext
{
// don't leak the stat event if we get destroyed before disk-commit for some reason
virtual void BeginDestroy();
};
var native transient pointer StatEvent{struct FGenericParamListEvent};
var protected transient GameplayEventsWriter Writer;
// setters for supported data types
function native AddFloat(name ParamName, float Value);
function native AddInt(name ParamName, Int Value);
function native AddVector(name ParamName, Vector Value);
function native AddString(name ParamName, coerce String Value);
// getters for supported data types
function native bool GetFloat(name ParamName, out float out_Float);
function native bool GetInt(name ParamName, out int out_int);
function native bool GetVector(name ParamName, out vector out_vector);
function native bool GetString(name ParamName, out string out_string);
// will write this event to disk
function native CommitToDisk();