You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fix copyrights for new soundfield/endpoint files. #rb none [CL 11302296 by Ethan Geller in Main branch]
18 lines
292 B
C++
18 lines
292 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
class FSoundFieldRenderingModule : public IModuleInterface
|
|
{
|
|
public:
|
|
virtual void StartupModule() override;
|
|
|
|
virtual void ShutdownModule() override;
|
|
|
|
private:
|
|
};
|