You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
18 lines
681 B
C++
18 lines
681 B
C++
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
#include "K2Node_InputAxisKeyEvent.h"
|
|
#include "K2Node_InputVectorAxisEvent.generated.h"
|
|
|
|
UCLASS(MinimalAPI)
|
|
class UK2Node_InputVectorAxisEvent : public UK2Node_InputAxisKeyEvent
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
// 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(TArray<UBlueprintNodeSpawner*>& ActionListOut) const override;
|
|
// End UK2Node interface
|
|
}; |