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