You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Move deserialize/serialize utilities off of module and into own FileConversion namespace. Stub in landing place for export in Intermediates. #jira UEAU-527 #rb ethan.geller [CL 13886786 by Rob Gay in ue5-main branch]
17 lines
323 B
C++
17 lines
323 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Logging/LogMacros.h"
|
|
#include "Modules/ModuleInterface.h"
|
|
|
|
// Forward Declarations
|
|
class UMetasound;
|
|
|
|
DECLARE_LOG_CATEGORY_EXTERN(LogMetasoundEngine, Log, All);
|
|
|
|
|
|
class IMetasoundEngineModule : public IModuleInterface
|
|
{
|
|
};
|