Advertisement
TrodelHD

Untitled

May 7th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. import java.util.ArrayList;
  2.  
  3. import Connection.BuildConnection;
  4. import Connection.Send;
  5.  
  6. public class Main {
  7.  
  8. ArrayList<String> test = new ArrayList<String>();
  9.  
  10. public Main() {
  11.  
  12. BuildConnection con = new BuildConnection("93.205.164.254",3000);
  13. test.add("send");
  14. test.add("nudes");
  15.  
  16. Send sender = new Send(test,con);
  17.  
  18.  
  19.  
  20. }
  21.  
  22.  
  23.  
  24. public static void main(String[] args) {
  25. new Main();
  26. }
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement