UnrealVoxta 0.1.1
 
Loading...
Searching...
No Matches
ServerResponseBase.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
15{
16#pragma region public API
17public:
18 virtual ~ServerResponseBase() = default;
19
20 explicit ServerResponseBase(ServerResponseType responseType) :
21 RESPONSE_TYPE(responseType)
22 {}
23#pragma endregion
24
25#pragma region data
26public:
29};
ServerResponseType
ServerResponseType Contains the possible response types that can be reported by the VoxtaApiReponseHa...
Definition ServerResponseType.h:16
const ServerResponseType RESPONSE_TYPE
The type of this server response.
Definition ServerResponseBase.h:28
ServerResponseBase(ServerResponseType responseType)
Definition ServerResponseBase.h:20
virtual ~ServerResponseBase()=default