Completely irrelevant to this thread. ;D
Actually it does answer your question: âhappy?â ;D ;D
Haha, letâs stop this⌠xD
Frame + Canvas + BufferStrategy then
Remember, Frame doesnât have the convenient âsetDefaultCloseOperation(âŚ)â method, so you will have to manually exit the JVM when the window closes:
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent we) {
System.exit(0);
}
});