extends ControllerInterface< T >

Mini-tweaks...
This commit is contained in:
GoToLoop 2016-07-09 22:40:48 -03:00 committed by GitHub
parent 1f7cb64986
commit f0adb9e37a
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,3 @@
package controlP5;
/** /**
* controlP5 is a processing gui library. * controlP5 is a processing gui library.
* *
@ -25,6 +23,8 @@ package controlP5;
* *
*/ */
package controlP5;
import processing.core.PApplet; import processing.core.PApplet;
import processing.core.PFont; import processing.core.PFont;
import processing.core.PGraphics; import processing.core.PGraphics;
@ -35,7 +35,7 @@ import processing.event.KeyEvent;
* The ControllerInterface is inherited by all ControllerGroup and Controller classes. * The ControllerInterface is inherited by all ControllerGroup and Controller classes.
* *
*/ */
public interface ControllerInterface< T > { public interface ControllerInterface< T extends ControllerInterface< T > > {
@ControlP5.Invisible public void init( ); @ControlP5.Invisible public void init( );