mirror of
https://github.com/litruv/TobiiEyetracking.git
synced 2026-07-25 03:06:10 +10:00
Added Tobii from 4.23 + updated
This commit is contained in:
32
Source/TobiiInteractions/Private/TobiiInteractionsModule.cpp
Normal file
32
Source/TobiiInteractions/Private/TobiiInteractionsModule.cpp
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user