EasyJsonParser
EasyJsonParser copied to clipboard
how can I use EasyJsonParser in c++?
My current solution is here:
- copy EasyJsonParser library from "UE_4.26\Engine\Plugins\Marketplace" folder to my project plugin folder.
- add the following code into my project's
bulid.cs.
PrivateDependencyModuleNames.AddRange(new string[] { "EasyJsonParser"});
After these 2 steps, I can add the #include EasyJsonParseManager.h and start to use this library.
Is there any good solution?