Add dependency

Add fog of war to Build.cs

In order to use any C++ function from Fog Of War plugin, you must first add the plugin as a dependency to your project build cs file. If you project is called MyProject, then open MyProject.Build.cs and add AgoraFogOfWar to PrivateDependencyModuleNames.

Below is an example:

PrivateDependencyModuleNames.AddRange(new string[] {  "CoreUObject", 
			"Engine", 
			"AgoraFogOfWar"
		});

Last updated