You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
30 lines
570 B
C++
30 lines
570 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
|
|
/**
|
|
* Implements a details view customization for the UMediaSoundWave class.
|
|
*/
|
|
class FMediaSoundWaveCustomization
|
|
: public IDetailCustomization
|
|
{
|
|
public:
|
|
|
|
// IDetailCustomization interface
|
|
|
|
virtual void CustomizeDetails( IDetailLayoutBuilder& DetailBuilder ) override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* Creates an instance of this class.
|
|
*
|
|
* @return The new instance.
|
|
*/
|
|
static TSharedRef<IDetailCustomization> MakeInstance()
|
|
{
|
|
return MakeShareable(new FMediaSoundWaveCustomization());
|
|
}
|
|
};
|