From 9180b8e0d442d87e389c478b772136caa989c477 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Wed, 3 Apr 2024 16:55:09 +0200 Subject: [PATCH] [ue] Fix include order. --- spine-ue/Source/SpineUE/MySceneComponent.h | 2 +- spine-ue/Source/SpineUE/SpineUEGameMode.cpp | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/spine-ue/Source/SpineUE/MySceneComponent.h b/spine-ue/Source/SpineUE/MySceneComponent.h index 2905da8f4..5f107a990 100644 --- a/spine-ue/Source/SpineUE/MySceneComponent.h +++ b/spine-ue/Source/SpineUE/MySceneComponent.h @@ -4,8 +4,8 @@ #include "Components/SceneComponent.h" #include "CoreMinimal.h" -#include "MySceneComponent.generated.h" #include "SpineSkeletonRendererComponent.h" +#include "MySceneComponent.generated.h" UCLASS(ClassGroup = (Custom), meta = (BlueprintSpawnableComponent)) class SPINEUE_API UMySceneComponent : public USpineSkeletonRendererComponent { diff --git a/spine-ue/Source/SpineUE/SpineUEGameMode.cpp b/spine-ue/Source/SpineUE/SpineUEGameMode.cpp index 9163ec662..211bd924d 100644 --- a/spine-ue/Source/SpineUE/SpineUEGameMode.cpp +++ b/spine-ue/Source/SpineUE/SpineUEGameMode.cpp @@ -1,4 +1,5 @@ // Fill out your copyright notice in the Description page of Project Settings. -#include "SpineUE.h" #include "SpineUEGameMode.h" +#include "SpineUE.h" +