/// <summary> /// Crawls the StarCraft 2 MPQs to grab the *.galaxy files inside. These files are parsed for (native) functions and constants. /// </summary> /// <returns>The functions and constants of StarCraft 2 in form of a LibraryData</returns> internal static LibraryData LoadFunctions() { FunctionExtractor extrator = new FunctionExtractor(); return(extrator.loadLibraries()); }
/// <summary> /// Crawls the StarCraft 2 MPQs to grab the *.galaxy files inside. These files are parsed for (native) functions and constants. /// </summary> /// <returns>The functions and constants of StarCraft 2 in form of a LibraryData</returns> internal static LibraryData LoadFunctions() { FunctionExtractor extrator = new FunctionExtractor(); return extrator.loadLibraries(); }