11 lines
192 B
C++
Executable file
11 lines
192 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ExposedProperty.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FExposedProperty {
|
|
GENERATED_BODY()
|
|
public:
|
|
FSD_API FExposedProperty();
|
|
};
|
|
|