uh stuff. i'm putting it in the readme.
This commit is contained in:
squeaksies
2018-10-30 22:18:39 -07:00
parent 3b7a4213fc
commit daa08984d1
230 changed files with 9892 additions and 301 deletions

View File

@@ -0,0 +1,36 @@
/*
By Rama for You
You are welcome to use this code anywhere as long as you include this notice.
copyright 2015
*/
using UnrealBuildTool;
public class VictoryUMG : ModuleRules
{
public VictoryUMG(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"RHI",
"RenderCore",
"UMG", "Slate", "SlateCore",
"APPFRAMEWORK" //for color picker! -Rama
}
);
//Private Paths
PrivateIncludePaths.AddRange(new string[] {
"VictoryUMG/Public",
"VictoryUMG/Private"
});
}
}