Files
Cog/Plugins/Cog/Source/CogDebug/Public/CogDebugPlotBlueprint.h
T
2023-10-13 14:59:53 -04:00

16 lines
427 B
C++

#pragma once
#include "CoreMinimal.h"
#include "Kismet/BlueprintFunctionLibrary.h"
#include "CogDebugPlotBlueprint.generated.h"
UCLASS(meta = (ScriptName = "CogDebugPlot"))
class COGDEBUG_API UCogDebugPlotBlueprint : public UBlueprintFunctionLibrary
{
GENERATED_BODY()
public:
UFUNCTION(BlueprintCallable, meta = (DevelopmentOnly))
static void Plot(const UObject* Owner, const FName Name, const float Value);
};