17 lines
300 B
C++
17 lines
300 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Blueprint/UserWidget.h"
|
|
#include "APITestOverlay.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class DEDICATEDSERVERS_API UAPITestOverlay : public UUserWidget
|
|
{
|
|
GENERATED_BODY()
|
|
};
|