Added Tobii from 4.23 + updated

This commit is contained in:
2023-03-04 04:19:09 +11:00
parent 2d5b9008e5
commit 1cde391516
521 changed files with 11735 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
/******************************************************************************
* Copyright 2017- Tobii Technology AB. All rights reserved.
*
* @author Temaran | Fredrik Lindh | fredrik.lindh@tobii.com | https://github.com/Temaran
******************************************************************************/
#include "TobiiInteractionsModule.h"
#include "TobiiInteractionsStyle.h"
#include "GameFramework/HUD.h"
IMPLEMENT_MODULE(FTobiiInteractionsModule, TobiiInteractions);
void FTobiiInteractionsModule::StartupModule()
{
#if WITH_EDITOR
if (GIsEditor)
{
FTobiiInteractionsStyle::Initialize();
}
#endif
}
void FTobiiInteractionsModule::ShutdownModule()
{
#if WITH_EDITOR
if (GIsEditor)
{
FTobiiInteractionsStyle::Shutdown();
}
#endif
}