Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

32 rader
532 B

  1. using System;
  2. namespace SUISSEngine
  3. {
  4. public interface IGameInterface
  5. {
  6. DeviceFormFactor GetDeviceFormFactor();
  7. void RegisterOnApplicationPauseHandler(Action<bool> action);
  8. long GetUserId();
  9. bool IsWebServiceAvailable();
  10. void RegisterPullRequestCompletedHandler(Action action);
  11. void ForcePullRequest();
  12. void MuteAudio();
  13. void RestoreAudio();
  14. long GetTotalMinutesPlayed();
  15. bool ShowAdInfoPopup();
  16. string GetCountryCode();
  17. INativeBindings GetNativeBindings();
  18. }
  19. }