18 lines
312 B
C++
18 lines
312 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "EditorUtilityWidget.h"
|
|
#include "ConvaiEUWBase.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS(Abstract)
|
|
class CONVAIEDITOR_API UConvaiEUWBase : public UEditorUtilityWidget
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
};
|