34 lines
564 B
C
34 lines
564 B
C
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CoreMinimal.h"
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
class AIGC_API FAIGCStyle
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
static void Initialize();
|
||
|
|
||
|
static void Shutdown();
|
||
|
|
||
|
/** reloads textures used by slate renderer */
|
||
|
static void ReloadTextures();
|
||
|
|
||
|
/** @return The Slate style set for the Shooter game */
|
||
|
static const ISlateStyle& Get();
|
||
|
|
||
|
static FName GetStyleSetName();
|
||
|
|
||
|
private:
|
||
|
|
||
|
static TSharedRef< class FSlateStyleSet > Create();
|
||
|
|
||
|
private:
|
||
|
|
||
|
static TSharedPtr< class FSlateStyleSet > StyleInstance;
|
||
|
};
|