Skip to content

Instantly share code, notes, and snippets.

@RobinMalfait
Created March 4, 2013 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RobinMalfait/5081184 to your computer and use it in GitHub Desktop.
Save RobinMalfait/5081184 to your computer and use it in GitHub Desktop.
JAVA: standard template
import java.applet.Applet;
import java.awt.*;
public class standard extends Applet {
public void init()
{
resize(500, 500);
}
public void paint(Graphics g)
{
}
public boolean action(Event e, Object o)
{
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment