You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
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. }