コード例 #1
0
 public void waitClientReady()
 {
     while (true)
     {
         if (ClientLCU.IsApiReady())
         {
             break;
         }
         Thread.Sleep(2000);
     }
 }
コード例 #2
0
 public ChampionPickResult pickChampion(ChampionEnum champion)
 {
     return(ClientLCU.PickChampion(summoner, champion));
 }
コード例 #3
0
 public GameflowPhaseEnum getGameflowPhase()
 {
     return(ClientLCU.GetGameflowPhase());
 }
コード例 #4
0
 public bool isMatchFound()
 {
     return(ClientLCU.IsMatchFounded());
 }
コード例 #5
0
 public void acceptMatch()
 {
     ClientLCU.AcceptMatch();
 }
コード例 #6
0
 public SearchMatchResult searchMatch()
 {
     return(ClientLCU.SearchMatch());
 }
コード例 #7
0
 public void createLobby(QueueEnum queueId)
 {
     ClientLCU.CreateLobby(queueId);
 }
コード例 #8
0
 public bool loadSummoner()
 {
     this.summoner = ClientLCU.GetCurrentSummoner();
     return(summoner != null);
 }
コード例 #9
0
 public void openClient()
 {
     ClientLCU.OpenClient();
 }
コード例 #10
0
 public void closeClient()
 {
     ClientLCU.CloseClient();
 }
コード例 #11
0
 public void initialize()
 {
     ClientLCU.Initialize();
 }
コード例 #12
0
 public bool isInChampSelect()
 {
     return(ClientLCU.IsInChampSelect());
 }