AppTrackingTransparency.cs 352 B

123456789101112131415
  1. namespace GFGGame.Launcher
  2. {
  3. public static class AppTrackingTransparency
  4. {
  5. [System.Runtime.InteropServices.DllImport("__Internal")]
  6. private static extern void RequestTrackingAuthorizationI();
  7. public static void RequestTrackingAuthorization()
  8. {
  9. RequestTrackingAuthorization();
  10. }
  11. }
  12. }