mirror of
https://github.com/litruv/TobiiEyetracking.git
synced 2026-07-24 18:56:09 +10:00
33 lines
757 B
C++
33 lines
757 B
C++
/******************************************************************************
|
|
* 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
|
|
}
|