コード例 #1
0
        public static bool Send(Objects.Client client, Constants.Direction direction)
        {
            TurnPacket p = new TurnPacket(client, direction);

            return(p.Send());
        }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: Xileck/tibiaapi
 private void uxHookProxySendServerTest_Click(object sender, EventArgs e)
 {
     TurnPacket p = new TurnPacket(client, Tibia.Constants.Direction.Down);
     MarkButton((Button)sender, p.Send(Packet.SendMethod.HookProxy));
 }
コード例 #3
0
ファイル: TurnPacket.cs プロジェクト: Xileck/tibiaapi
 public static bool Send(Objects.Client client, Constants.Direction direction)
 {
     TurnPacket p = new TurnPacket(client, direction);
     return p.Send();
 }