20 lines
255 B
C++
20 lines
255 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Toolkits/AssetEditorToolkit.h"
|
|
|
|
|
|
/** CurveTable Editor public interface */
|
|
class ICurveTableEditor : public FAssetEditorToolkit
|
|
{
|
|
|
|
public:
|
|
|
|
// ...
|
|
|
|
};
|
|
|
|
|