You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb rob.gay, phil.popp #preflight 6414cabd345ab08524fc9542 [CL 24723801 by charlie huguenard in ue5-main branch]
21 lines
464 B
C
21 lines
464 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "SoundGeneratorOutput.generated.h"
|
|
|
|
/**
|
|
* Base class for generators that have outputs that can be exposed to other game code.
|
|
*
|
|
* NOTE: This is not widely supported and should be considered experimental.
|
|
*/
|
|
USTRUCT(BlueprintType)
|
|
struct FSoundGeneratorOutput
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
/** The output's name */
|
|
UPROPERTY(BlueprintReadOnly, Category = SoundGeneratorOutput)
|
|
FName Name;
|
|
};
|