/// <summary> /// Updates the Tap Points for the user with the given awarded amount of currency. /// </summary> /// <param name="points"> /// A <see cref="System.Int32"/> /// </param> public static void AwardTapPoints(int points) { if (Application.platform == RuntimePlatform.OSXEditor) { return; } TapjoyPlatformPlugin.AwardTapPoints(points); }
/// <summary> /// Updates the Tap Points for the user with the given awarded amount of currency. /// </summary> /// <param name="points"> /// A <see cref="System.Int32"/> /// </param> public static void AwardTapPoints(int points) { if (Application.isEditor) { return; } TapjoyPlatformPlugin.AwardTapPoints(points); }