Project Creation

This commit is contained in:
ArckingV
2023-11-28 13:34:27 -06:00
parent 59bf43490e
commit dc293c7a7c
494 changed files with 909 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class Puzzle_Island : ModuleRules
{
public Puzzle_Island(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "EnhancedInput" });
}
}