// Copyright PICO Technology Co., Ltd. All rights reserved. // This plugin incorporates portions of the UnrealĀ® Engine. UnrealĀ® is a trademark or registered trademark of Epic Games, Inc. in the United States of America and elsewhere. // Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "PXR_EditorStyle.h" class FPICOXREditorCommands : public TCommands { public: FPICOXREditorCommands() : TCommands(TEXT("PICOXREditor"), NSLOCTEXT("Contexts", "PICOXREditor", "PICOXREditor Plugin"), NAME_None, TEXT("PICOXREditor.Common.Icon")) { } // TCommands<> interface virtual void RegisterCommands() override; public: TSharedPtr PluginAction; TSharedPtr LaunchAPIReferenceURL; TSharedPtr LaunchSampleDemoURL; TSharedPtr LaunchOfficialWebsiteURL; TSharedPtr LaunchMarketplaceURL; TSharedPtr AddSampleInputs; TSharedPtr ClearSampleInputs; };