So, I'm making this joke of a Java GUI because i'm just amazing like that.. and tried everything and nothing is working..
Here's code.
Here's code.
Code:
package net.swiftex;
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
public class Hacks extends JFrame{
private JLabel label;
private JButton button;
private JTextField text;
public Hacks() {
setLayout(new FlowLayout());
label = new JLabel("Enter the details");
add(label);
text = new JTextField(15);
add(text);
button = new JButton("HACK MINECRAFT ACCOUNT!?!");
add(button);
}
public static void main(String[] args){
Hacks hacking = new Hacks();
hacking.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
hacking.setSize(3000,2000);
hacking.setVisible(true);
hacking.setTitle("Minecraft Account H4CK0R");
}
}
