19 lines
373 B
C++
19 lines
373 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Kismet/BlueprintFunctionLibrary.h"
|
|
#include "UIDataPathLibrary.generated.h"
|
|
|
|
namespace UIDataPaths
|
|
{
|
|
extern const FString DebugDir;
|
|
}
|
|
|
|
UCLASS()
|
|
class PROJECTT_API UUIDataPathLibrary : public UBlueprintFunctionLibrary
|
|
{
|
|
GENERATED_BODY()
|
|
};
|