選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した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. }