A modded EditSaber for making beat saber maps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
959 B

  1. // Fill out your copyright notice in the Description page of Project Settings.
  2. using UnrealBuildTool;
  3. public class MediocreMapper : ModuleRules
  4. {
  5. public MediocreMapper(ReadOnlyTargetRules Target) : base(Target)
  6. {
  7. PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
  8. PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "ProceduralMeshComponent", "HTTP" });
  9. PrivateDependencyModuleNames.AddRange(new string[] { });
  10. // Uncomment if you are using Slate UI
  11. // PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
  12. // Uncomment if you are using online features
  13. // PrivateDependencyModuleNames.Add("OnlineSubsystem");
  14. // To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true
  15. PrivateDependencyModuleNames.AddRange(new string[] { "Kiss_FFT" });
  16. PublicDependencyModuleNames.Add("Kiss_FFT");
  17. }
  18. }