27 lines
556 B
C++
27 lines
556 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Blueprint/UserWidget.h"
|
|
#include "MainScreenUserWidget.generated.h"
|
|
|
|
class UDataTable;
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class LUCKYROBOTS_API UMainScreenUserWidget : public UUserWidget
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config")
|
|
UDataTable* RobotDataDataTable;
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config")
|
|
UDataTable* LevelDataTable;
|
|
public:
|
|
void InitData();
|
|
};
|