Files
marc audy 38f263e67a Remove self-included header and replace with needed one for non-unity
[CODEREVIEW] jimmy.smith
#jira
#rnx

[CL 25980407 by marc audy in ue5-main branch]
2023-06-14 11:36:57 -04:00

12 lines
258 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleInterface.h"
class FAudioExtensionsModule final : public IModuleInterface
{
public:
static FAudioExtensionsModule* Get();
virtual void StartupModule() override;
};