12 lines
218 B
C++
Executable file
12 lines
218 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Object.h"
|
|
#include "FSDSendToURL.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFSDSendToURL : public UObject {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFSDSendToURL();
|
|
};
|
|
|