Files
UnrealEngine/Engine/Plugins/Bridge/Source/MegascansPlugin/Public/SMSWindow.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

27 lines
465 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Templates/SharedPointer.h"
#define UE_API MEGASCANSPLUGIN_API
class SWindow;
class UMegascansSettings;
class FTabManager;
class MegascansSettingsWindow
{
public:
static UE_API void OpenSettingsWindow(/*const TSharedRef<FTabManager>& TabManager*/);
static UE_API void SaveSettings(const TSharedRef<SWindow>& Window, UMegascansSettings* MegascansSettings);
};
#undef UE_API