diff --git a/Project/Source/Surgo/SurgoModule.h b/Project/Source/Surgo/SurgoModule.h new file mode 100644 index 0000000..4c9a733 --- /dev/null +++ b/Project/Source/Surgo/SurgoModule.h @@ -0,0 +1,9 @@ +#pragma once + +#include "Modules/ModuleInterface.h" + +class SURGO_API FSurgoModule : public IModuleInterface +{ +public: + +} diff --git a/Project/Source/SurgoEditor.Target.cs b/Project/Source/SurgoEditor.Target.cs index 2e4aa7f..f412713 100644 --- a/Project/Source/SurgoEditor.Target.cs +++ b/Project/Source/SurgoEditor.Target.cs @@ -1,10 +1,11 @@ using TargetInfo = UnrealBuildTool.TargetInfo; using TargetRules = UnrealBuildTool.TargetRules; +using TargetType = UnrealBuildTool.TargetType; public class SurgoEditorTarget : TargetRules { public SurgoEditorTarget(TargetInfo Target) : base(Target) { - + Type = TargetType.Editor; } } diff --git a/Project/Source/SurgoGame.Target.cs b/Project/Source/SurgoGame.Target.cs index e086fb1..f1b4312 100644 --- a/Project/Source/SurgoGame.Target.cs +++ b/Project/Source/SurgoGame.Target.cs @@ -1,10 +1,11 @@ using TargetInfo = UnrealBuildTool.TargetInfo; using TargetRules = UnrealBuildTool.TargetRules; +using TargetType = UnrealBuildTool.TargetType; public class SurgoGameTarget : TargetRules { public SurgoGameTarget(TargetInfo Target) : base(Target) { - + Type = TargetType.Game; } } diff --git a/Project/Surgo.uproject b/Project/Surgo.uproject index 2985f14..15f37cd 100644 --- a/Project/Surgo.uproject +++ b/Project/Surgo.uproject @@ -12,7 +12,7 @@ }, { "Name": "SurgoEditor", - "Type": "Runtime", + "Type": "Editor", "LoadingPhase": "PostDefault" } ],