This commit is contained in:
Yousif Al-Yousifi 2015-08-17 22:27:26 +00:00
commit 8c717b78d3
1 changed files with 2 additions and 2 deletions

View File

@ -125,8 +125,8 @@ Alternatively, ControlP5 can be instantiated from other places as well for examp
class GUI {
ControlP5 cp5;
GUI(ControlP5 theControlP5) {
cp5 = new ControlP5(theControlP5);
GUI(PApplet pApplet) {
cp5 = new ControlP5(pApplet);
}
}
```