Skip to content

Commit b665a9c

Browse files
author
Roberto De Ioris
committed
correctly expose UCLASS'es
1 parent 5376deb commit b665a9c

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Source/UnrealEnginePython/Public/PyActor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
UCLASS(BlueprintType, Blueprintable)
11-
class APyActor : public AActor
11+
class UNREALENGINEPYTHON_API APyActor : public AActor
1212
{
1313
GENERATED_BODY()
1414

Source/UnrealEnginePython/Public/PyCharacter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
UCLASS()
10-
class APyCharacter : public ACharacter
10+
class UNREALENGINEPYTHON_API APyCharacter : public ACharacter
1111
{
1212
GENERATED_BODY()
1313

Source/UnrealEnginePython/Public/PyHUD.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
UCLASS(BlueprintType, Blueprintable)
11-
class APyHUD : public AHUD
11+
class UNREALENGINEPYTHON_API APyHUD : public AHUD
1212
{
1313
GENERATED_BODY()
1414

Source/UnrealEnginePython/Public/PyPawn.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
UCLASS(BlueprintType, Blueprintable)
11-
class APyPawn : public APawn
11+
class UNREALENGINEPYTHON_API APyPawn : public APawn
1212
{
1313
GENERATED_BODY()
1414

Source/UnrealEnginePython/Public/PyUserWidget.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
UCLASS(BlueprintType, Blueprintable)
10-
class UPyUserWidget : public UUserWidget
10+
class UNREALENGINEPYTHON_API UPyUserWidget : public UUserWidget
1111
{
1212
GENERATED_BODY()
1313

Source/UnrealEnginePython/Public/PythonComponent.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
UCLASS(BlueprintType, Blueprintable, ClassGroup = (Python), meta = (BlueprintSpawnableComponent))
10-
class UPythonComponent : public UActorComponent
10+
class UNREALENGINEPYTHON_API UPythonComponent : public UActorComponent
1111
{
1212
GENERATED_BODY()
1313

0 commit comments

Comments
 (0)