19 lines
373 B
C++
19 lines
373 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
#include "Commandlets/Commandlet.h"
|
|
#include "SwapSoundForDialogueInCuesCommandlet.generated.h"
|
|
|
|
UCLASS()
|
|
class USwapSoundForDialogueInCuesCommandlet : public UCommandlet
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
virtual int32 Main(const FString& Params);
|
|
};
|