Skip to content

Commit b36a654

Browse files
authored
Merge pull request 20tab#732 from edowson/4.22
Updates for UE4.22.
2 parents 282eaa5 + e928f71 commit b36a654

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ ENV/
8989
.ropeproject
9090

9191
Binaries/
92+
Intermediate/
9293
python35/
9394
python27/
9495
*.un~

Source/PythonAutomation/Public/PythonAutomationModule.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
#pragma once
44

55
#include "CoreMinimal.h"
6+
#if ENGINE_MAJOR_VERSION==4 && ENGINE_MINOR_VERSION>=22
7+
#include "Modules/ModuleInterface.h"
8+
#else
69
#include "ModuleInterface.h"
10+
#endif
711

812
class FPythonAutomationModule : public IModuleInterface
913
{

Source/UnrealEnginePython/Private/PythonHouseKeeper.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#pragma once
21

32
#include "PythonHouseKeeper.h"
43

0 commit comments

Comments
 (0)