You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UES-7210 #rb benoit.chauvin #rn [Experimental] Publishing Submit Tool code [CL 36977217 by juan legaz in 5.5 branch]
28 lines
504 B
C++
28 lines
504 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
|
class FModelInterface;
|
|
class FUICommandList;
|
|
|
|
class FSubmitToolCommandHandler
|
|
{
|
|
public:
|
|
void AddToCommandList(FModelInterface * InModelInterface, TSharedRef<FUICommandList> CommandList);
|
|
|
|
private:
|
|
|
|
#if !UE_BUILD_SHIPPING
|
|
void OnWidgetReflectCommandPressed();
|
|
void OnForceCrashCommandPressed();
|
|
#endif
|
|
|
|
void OnHelpCommandPressed();
|
|
void OnExitCommandPressed();
|
|
|
|
private:
|
|
FModelInterface* ModelInterface;
|
|
}; |