fix a build error where engine versions are < 5.2

This commit is contained in:
Mamadou Babaei
2023-05-19 18:14:43 +02:00
parent 58aef14b0d
commit 2e560e02f7
@@ -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"