You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-171293 #rb Matt.Kuhlenschmidt #preflight 63dc9e4207207b2570320dfa [CL 24004153 by karen jirak in ue5-main branch]
27 lines
463 B
C++
27 lines
463 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
// #include "ToolkitStyle.h"
|
|
|
|
#pragma once
|
|
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
// @TODO: ~enable ToolkitStyle set
|
|
|
|
class FWidgetRegistrationModule
|
|
: public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
// IModuleInterface interface
|
|
|
|
virtual void StartupModule() override;
|
|
|
|
virtual void ShutdownModule() override;
|
|
|
|
};
|
|
|
|
|
|
IMPLEMENT_MODULE(FWidgetRegistrationModule, WidgetRegistration);
|