Files
UnrealEngine/Engine/Source/Programs/AutoRTFMTests/Classes/MyAutoRTFMTestObjectWithSubObjects.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

20 lines
420 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "MyAutoRTFMTestObjectWithSubObjects.generated.h"
UCLASS()
class UMyAutoRTFMTestObjectWithSubObjects : public UObject
{
GENERATED_BODY()
public:
static FName GetSubObjectName();
UMyAutoRTFMTestObjectWithSubObjects(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get());
UObject* SubObject;
void DoNothing() const {}
};