Files
UE5-cyberHuman/Plugins/AzSpeech/Source/AzSpeechEditor/Public/AzSpeechEditor.h

20 lines
402 B
C
Raw Normal View History

2025-04-07 18:31:41 -07:00
// Author: Lucas Vilas-Boas
// Year: 2023
// Repo: https://github.com/lucoiso/UEAzSpeech
#pragma once
#include <CoreMinimal.h>
class FAzSpeechEditorModule : public IModuleInterface
{
protected:
virtual void StartupModule() override;
virtual void ShutdownModule() override;
TSharedRef<SDockTab> OnSpawnTab(const FSpawnTabArgs& SpawnTabArgs) const;
private:
void RegisterMenus();
};