We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 282eaa5 + e928f71 commit b36a654Copy full SHA for b36a654
3 files changed
.gitignore
@@ -89,6 +89,7 @@ ENV/
89
.ropeproject
90
91
Binaries/
92
+Intermediate/
93
python35/
94
python27/
95
*.un~
Source/PythonAutomation/Public/PythonAutomationModule.h
@@ -3,7 +3,11 @@
3
#pragma once
4
5
#include "CoreMinimal.h"
6
+#if ENGINE_MAJOR_VERSION==4 && ENGINE_MINOR_VERSION>=22
7
+#include "Modules/ModuleInterface.h"
8
+#else
9
#include "ModuleInterface.h"
10
+#endif
11
12
class FPythonAutomationModule : public IModuleInterface
13
{
Source/UnrealEnginePython/Private/PythonHouseKeeper.cpp
@@ -1,4 +1,3 @@
1
-#pragma once
2
#include "PythonHouseKeeper.h"
0 commit comments