mirror of
https://github.com/litruv/TobiiEyetracking.git
synced 2026-07-24 10:46:12 +10:00
24 lines
744 B
C++
24 lines
744 B
C++
/******************************************************************************
|
|
* Copyright 2017- Tobii Technology AB. All rights reserved.
|
|
*
|
|
* @author Temaran | Fredrik Lindh | fredrik.lindh@tobii.com | https://github.com/Temaran
|
|
******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Styling/ISlateStyle.h"
|
|
|
|
class TOBIIINTERACTIONS_API FTobiiInteractionsStyle
|
|
{
|
|
public:
|
|
static void Initialize();
|
|
static void Shutdown();
|
|
static void ReloadTextures();
|
|
static const ISlateStyle& Get();
|
|
static FName GetStyleSetName();
|
|
|
|
private:
|
|
static TSharedRef<class FSlateStyleSet> Create();
|
|
static TSharedPtr<class FSlateStyleSet> TobiiEyetrackingInteractionsStyleInstance;
|
|
}; |