Skip to content

Instantly share code, notes, and snippets.

@getflourish
Created July 5, 2011 13:23
Show Gist options
  • Save getflourish/1064820 to your computer and use it in GitHub Desktop.
Save getflourish/1064820 to your computer and use it in GitHub Desktop.
public class PFrame extends Frame
{
public PFrame(PApplet p)
{
p.setBounds(100, 100, 200, 600);
controlWindow = new ControlWindow(p);
p.add(controlWindow);
controlWindow.init();
p.show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment