A Demo Project for the UnrealEngineSDK
Loading...
Searching...
No Matches
DlgObject.h
Go to the documentation of this file.
1// Copyright Csaba Molnar, Daniel Butum. All Rights Reserved.
2#pragma once
3#include "UObject/Object.h"
4
5#include "DlgObject.generated.h"
6
7// Our Dialogue base object
8UCLASS(Abstract, ClassGroup = "Dialogue", HideCategories = ("DoNotShow"), AutoExpandCategories = ("Default"))
9class DLGSYSTEM_API UDlgObject : public UObject
10{
11 GENERATED_BODY()
12public:
13 // UObject interface
14 void PostInitProperties() override;
15 UWorld* GetWorld() const override;
16};
UCLASS(Abstract, ClassGroup = "Dialogue", HideCategories = ("DoNotShow"), AutoExpandCategories = ("De...
Definition DlgObject.h:13