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.

36 lines
663 B

5 years ago
5 years ago
5 years ago
  1. /*
  2. By Rama for You
  3. You are welcome to use this code anywhere as long as you include this notice.
  4. copyright 2015
  5. */
  6. using UnrealBuildTool;
  7. public class VictoryUMG : ModuleRules
  8. {
  9. public VictoryUMG(ReadOnlyTargetRules Target) : base(Target)
  10. {
  11. PublicDependencyModuleNames.AddRange(
  12. new string[] {
  13. "Core",
  14. "CoreUObject",
  15. "Engine",
  16. "InputCore",
  17. "RHI",
  18. "RenderCore",
  19. "UMG",
  20. "Slate",
  21. "SlateCore",
  22. "APPFRAMEWORK" //for color picker! -Rama
  23. }
  24. );
  25. //Private Paths
  26. PrivateIncludePaths.AddRange(new string[] {
  27. "VictoryUMG/Public",
  28. "VictoryUMG/Private"
  29. });
  30. }
  31. }