A Demo Project for the UnrealEngineSDK
Loading...
Searching...
No Matches
DlgDialogueFactory.h
Go to the documentation of this file.
1// Copyright Csaba Molnar, Daniel Butum. All Rights Reserved.
2#pragma once
3
4#include "Factories/Factory.h"
5
6#include "DlgDialogueFactory.generated.h"
7
12UCLASS()
13class DLGSYSTEMEDITOR_API UDlgDialogueFactory : public UFactory
14{
15 GENERATED_BODY()
16
17public:
18 UDlgDialogueFactory(const FObjectInitializer& ObjectInitializer);
19
20 //
21 // UFactory interface
22 //
23 UObject* FactoryCreateNew(
24 UClass* Class,
25 UObject* InParent,
26 FName Name,
27 EObjectFlags Flags,
28 UObject* Context,
29 FFeedbackContext* Warn
30 ) override;
31};