24 lines
692 B
C
24 lines
692 B
C
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CoreMinimal.h"
|
||
|
#include "Kismet/BlueprintFunctionLibrary.h"
|
||
|
#include "SharedDef.h"
|
||
|
#include "LuckyRobotsFunctionLibrary.generated.h"
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
UCLASS()
|
||
|
class LUCKYROBOTS_API ULuckyRobotsFunctionLibrary : public UBlueprintFunctionLibrary
|
||
|
{
|
||
|
GENERATED_BODY()
|
||
|
public:
|
||
|
UFUNCTION(BlueprintPure, meta = (WorldContext = "WorldContextObject"))
|
||
|
static TArray<FRobotData> GetActiveRobotDataList(const UObject* WorldContextObject);
|
||
|
|
||
|
UFUNCTION(BlueprintPure, meta = (WorldContext = "WorldContextObject"))
|
||
|
static TArray<FLevelData> GetActiveLevelDataList(const UObject* WorldContextObject);
|
||
|
};
|