/// <summary> /// Adds a .KARMarker data set to the tracker with a given name. /// </summary> /// <returns><c>true<c>/c>, if the data set was successfully added to the tracker, <c>false</c> otherwise.</returns> /// <param name="pathToFile">The filepath pointing to the data set.</param> /// <param name="id">A string used to identify the data set while the app is running.</param> public void AddTrackableSet(string pathToFile, string ID) { _trackerPlugin.AddTrackableSet(pathToFile, ID); }