Files
UnrealEngine/Engine/Plugins/Editor/AssetSearch/Source/Public/AssetSearchCommands.h
2025-05-18 13:04:45 +08:00

19 lines
389 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Framework/Commands/Commands.h"
class FAssetSearchCommands : public TCommands<FAssetSearchCommands>
{
public:
FAssetSearchCommands();
// TCommands<> interface
virtual void RegisterCommands() override;
// End of TCommands<> interface
TSharedPtr<FUICommandInfo> ViewAssetSearch;
};