Files
UnrealEngine/Engine/Plugins/Experimental/PythonScriptPlugin/Source/PythonScriptPlugin/Private/PythonScriptCommandlet.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

19 lines
419 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Commandlets/Commandlet.h"
#include "PythonScriptCommandlet.generated.h"
/** Minimal commandlet to invoke a Python script and exit */
UCLASS()
class UPythonScriptCommandlet : public UCommandlet
{
GENERATED_BODY()
public:
//~ Begin UCommandlet Interface
virtual int32 Main(const FString& Params) override;
//~ End UCommandlet Interface
};