You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
29 lines
928 B
C++
29 lines
928 B
C++
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
#include "K2Node_InputAxisKeyEvent.h"
|
|
#include "K2Node_InputVectorAxisEvent.generated.h"
|
|
|
|
class FBlueprintActionDatabaseRegistrar;
|
|
class UDynamicBlueprintBinding;
|
|
|
|
UCLASS(MinimalAPI)
|
|
class UK2Node_InputVectorAxisEvent : public UK2Node_InputAxisKeyEvent
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
//~ Begin UObject Interface
|
|
virtual void Serialize(FArchive& Ar) override;
|
|
//~ End UObject Interface
|
|
|
|
//~ Begin UK2Node Interface
|
|
virtual void ValidateNodeDuringCompilation(class FCompilerResultsLog& MessageLog) const override;
|
|
virtual UClass* GetDynamicBindingClass() const override;
|
|
virtual void RegisterDynamicBinding(UDynamicBlueprintBinding* BindingObject) const override;
|
|
virtual void GetMenuActions(FBlueprintActionDatabaseRegistrar& ActionRegistrar) const override;
|
|
//~ End UK2Node Interface
|
|
};
|