Files
Fortis/Source/FORTIS_Taktika/Public/ResComUserManager.h
T
2022-05-26 18:32:27 +05:00

33 lines
555 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "ResComUserManager.generated.h"
/**
*
*/
USTRUCT(BlueprintType)
struct FStruct_User
{
GENERATED_BODY()
UPROPERTY(BlueprintReadWrite)
FString name;
UPROPERTY(BlueprintReadWrite)
FString phone;
UPROPERTY(BlueprintReadWrite)
FString email;
UPROPERTY(BlueprintReadWrite)
TArray<int32> favoriteFlatsIndices;
};
class FORTIS_TAKTIKA_API UResComUserManager
{
public:
UResComUserManager();
~UResComUserManager();
};