您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 

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