A Demo Project for the UnrealEngineSDK
Loading...
Searching...
No Matches
XAPIBase.h
Go to the documentation of this file.
1// Fill out your copyright notice in the Description page of Project Settings.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "ApexJSON.h"
7#include "XAPIBase.generated.h"
8
9USTRUCT()
10struct APEXSDK_API FXAPIBase : public FJsonable
11{
12 GENERATED_BODY()
13
14 virtual ~FXAPIBase() {}
15
16 virtual bool IsEmpty() const
17 {
18 return true;
19 }
20};
USTRUCT()
Definition ApexJSON.h:13
USTRUCT()
Definition XAPIBase.h:13
virtual ~FXAPIBase()
Definition XAPIBase.h:16
virtual bool IsEmpty() const
Definition XAPIBase.h:18