Initialize repo

This commit is contained in:
MrRobin
2023-10-28 02:46:42 +02:00
parent df5ab7bec8
commit 1a7c2f384b
10 changed files with 1100 additions and 0 deletions

View File

@ -0,0 +1,30 @@
// Copyright 2023 MrRobin. All Rights Reserved.
using UnrealBuildTool;
public class CommonTime : ModuleRules
{
public CommonTime(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new string[]
{
"Core",
});
PublicDependencyModuleNames.AddRange(new string[]
{
"CoreUObject",
"Engine",
"Slate",
"SlateCore",
"DeveloperSettings",
"UnrealEd",
"PropertyEditor",
"ClassViewer",
"InputCore",
"BlueprintGraph",
});
}
}