Skip to content
Snippets Groups Projects
Commit acbccb56 authored by Ali Can Demiralp's avatar Ali Can Demiralp
Browse files

Added initial plugin project.

parent 0774b133
No related branches found
No related tags found
No related merge requests found
Resources/Icon128.png

3.83 KiB

#include "nDisplayExtensions.h"
#define LOCTEXT_NAMESPACE "FnDisplayExtensionsModule"
void FnDisplayExtensionsModule::StartupModule()
{
}
void FnDisplayExtensionsModule::ShutdownModule()
{
}
#undef LOCTEXT_NAMESPACE
IMPLEMENT_MODULE(FnDisplayExtensionsModule, nDisplayExtensions)
\ No newline at end of file
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleManager.h"
class NDISPLAYEXTENSIONS_API FnDisplayExtensionsModule : public IModuleInterface
{
public:
virtual void StartupModule() override;
virtual void ShutdownModule() override;
};
using UnrealBuildTool;
public class nDisplayExtensions : ModuleRules
{
public nDisplayExtensions(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicIncludePaths.AddRange(
new string[]
{
}
);
PrivateIncludePaths.AddRange(
new string[]
{
}
);
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"DisplayCluster",
"Engine",
"InputCore"
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
}
);
}
}
{
"FileVersion": 3,
"Version": 1,
"VersionName": "1.0",
"FriendlyName": "nDisplayExtensions",
"Description": "",
"Category": "Other",
"CreatedBy": "",
"CreatedByURL": "",
"DocsURL": "",
"MarketplaceURL": "",
"SupportURL": "",
"CanContainContent": true,
"IsBetaVersion": false,
"Installed": false,
"Modules": [
{
"Name": "nDisplayExtensions",
"Type": "Developer",
"LoadingPhase": "Default"
}
],
"Plugins": [
{
"Name": "nDisplay",
"Enabled": true
}
]
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment