// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "Modules/ModuleInterface.h" class FMetasoundExperimentalEngineRuntimeModule : public IModuleInterface { public: //~ Begin IModuleInterface API virtual void StartupModule() override; virtual void ShutdownModule() override; //~ End IModuleInterface API private: };