mirror of
https://github.com/Ed94/Cog.git
synced 2026-07-16 06:21:26 -07:00
16 lines
427 B
C++
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);
|
|
}; |