You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb brooke.hubert #fyi ryan.mangin #jira UEAU-556 [CL 14357833 by Rob Gay in ue5-main branch]
47 lines
883 B
C++
47 lines
883 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#include "ClassTemplateEditorSubsystem.h"
|
|
#include "Components/SynthComponent.h"
|
|
#include "CoreMinimal.h"
|
|
#include "Sound/SoundEffectSource.h"
|
|
#include "Sound/SoundEffectSubmix.h"
|
|
|
|
#include "SoundClassTemplates.generated.h"
|
|
|
|
|
|
UCLASS()
|
|
class USoundEffectSourcePresetClassTemplate : public UClassTemplate
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
public:
|
|
FString GetFilename() const override
|
|
{
|
|
return TEXT("SoundEffectSourceClass");
|
|
}
|
|
};
|
|
|
|
UCLASS()
|
|
class USoundEffectSubmixPresetClassTemplate : public UClassTemplate
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
public:
|
|
FString GetFilename() const override
|
|
{
|
|
return TEXT("SoundEffectSubmixClass");
|
|
}
|
|
};
|
|
|
|
UCLASS()
|
|
class USynthComponentClassTemplate : public UClassTemplate
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
public:
|
|
FString GetFilename() const override
|
|
{
|
|
return TEXT("SynthComponentClass");
|
|
}
|
|
}; |