Skip to content

Commit

Permalink
Added UIExtension plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshLmao committed Jun 23, 2024
1 parent 92b7a9d commit 00faa50
Show file tree
Hide file tree
Showing 9 changed files with 1,002 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Plugins/UIExtension/Source/Private/LogUIExtension.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright Epic Games, Inc. All Rights Reserved.

#include "LogUIExtension.h"

DEFINE_LOG_CATEGORY(LogUIExtension);
7 changes: 7 additions & 0 deletions Plugins/UIExtension/Source/Private/LogUIExtension.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Copyright Epic Games, Inc. All Rights Reserved.

#pragma once

#include "Logging/LogMacros.h"

DECLARE_LOG_CATEGORY_EXTERN(LogUIExtension, Log, All);
24 changes: 24 additions & 0 deletions Plugins/UIExtension/Source/Private/UIExtensionModule.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Copyright Epic Games, Inc. All Rights Reserved.

#include "Modules/ModuleManager.h"

class FUIExtensionModule : public IModuleInterface
{
public:
/** IModuleInterface implementation */
virtual void StartupModule() override;
virtual void ShutdownModule() override;
};

void FUIExtensionModule::StartupModule()
{
// This code will execute after your module is loaded into memory; the exact timing is specified in the .uplugin file per-module
}

void FUIExtensionModule::ShutdownModule()
{
// This function may be called during shutdown to clean up your module. For modules that support dynamic reloading,
// we call this function before unloading the module.
}

IMPLEMENT_MODULE(FUIExtensionModule, UIExtension)
Loading

0 comments on commit 00faa50

Please sign in to comment.