UnrealVoxta 0.1.1
 
Loading...
Searching...
No Matches
ServerResponseCharacterList.h
Go to the documentation of this file.
1// Copyright(c) 2024 grrimgrriefer & DZnnah, see LICENSE for details.
2
3#pragma once
4
5#include "CoreMinimal.h"
7#include "AiCharData.h"
8
15{
16#pragma region public API
17public:
23 explicit ServerResponseCharacterList(TArray<FAiCharData> characters) :
25 CHARACTERS(MoveTemp(characters))
26 {}
27#pragma endregion
28
29#pragma region data
30public:
32 const TArray<FAiCharData> CHARACTERS;
33#pragma endregion
34};
ServerResponseType
ServerResponseType Contains the possible response types that can be reported by the VoxtaApiReponseHa...
Definition ServerResponseType.h:16
ServerResponseBase(ServerResponseType responseType)
Definition ServerResponseBase.h:20
const TArray< FAiCharData > CHARACTERS
The list of AI character data.
Definition ServerResponseCharacterList.h:32
ServerResponseCharacterList(TArray< FAiCharData > characters)
Construct a character list response.
Definition ServerResponseCharacterList.h:23