fix a build error where engine versions are < 5.2

This commit is contained in:
Mamadou Babaei
2023-05-10 20:43:51 +02:00
parent 7b869be2ae
commit 27caa1f484
@@ -35,7 +35,12 @@
#include "SenseGlove/GameFramework/SGPlayerController.h"
#if ENGINE_MAJOR_VERSION > 5 || ( ENGINE_MAJOR_VERSION == 5 && ENGINE_MINOR_VERSION >= 2 )
#include "Engine/TimerHandle.h"
#else /* ENGINE_MAJOR_VERSION > 5 || ( ENGINE_MAJOR_VERSION == 5 && ENGINE_MINOR_VERSION >= 2 ) */
#include "Engine/EngineTypes.h"
#endif /* ENGINE_MAJOR_VERSION > 5 || ( ENGINE_MAJOR_VERSION == 5 && ENGINE_MINOR_VERSION >= 2 ) */
#include "TimerManager.h"
#include "SenseGlove/Components/SGGrabComponent.h"