Пример #1
0
 public void SendSummonerEmote(SDK.League.SummonerEmoteSlot slot)
 {
     Game.SendSummonerEmote((EnsoulSharp.SummonerEmoteSlot)slot);
 }
Пример #2
0
 public void SendMasteryBadge()
 {
     Game.SendMasteryBadge();
 }
Пример #3
0
 public void SendPing(SDK.League.PingCategory category, Vector2 target)
 {
     Game.SendPing((EnsoulSharp.PingCategory)category, target);
 }
Пример #4
0
 public void SendPing(SDK.League.PingCategory category, IGameObject target)
 {
     Game.SendPing((EnsoulSharp.PingCategory)category, EnsoulSharp.ObjectManager.GetUnitByNetworkId <GameObject>(target.Id));
 }
Пример #5
0
 public void SendEmote(Emote emote) => Game.SendEmote((EmoteId)emote);
Пример #6
0
 public void Print(string text) => Game.Print(text);
Пример #7
0
 public void Say(string text) => Game.Say(text, false);