Files
UnrealEngine/Engine/Source/Editor/AudioEditor/Classes/SoundCueGraph/SoundCueGraph.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

23 lines
444 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "EdGraph/EdGraph.h"
#include "UObject/ObjectMacros.h"
#include "UObject/UObjectGlobals.h"
#include "SoundCueGraph.generated.h"
class UObject;
UCLASS(MinimalAPI)
class USoundCueGraph : public UEdGraph
{
GENERATED_UCLASS_BODY()
/** Returns the SoundCue that contains this graph */
AUDIOEDITOR_API class USoundCue* GetSoundCue() const;
};