Update CDrawable.java

@FunctionalInterface
This commit is contained in:
GoToLoop 2016-07-11 04:53:49 -03:00 committed by GitHub
parent 423f3f0dff
commit c61291e963
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,3 @@
package controlP5;
/**
* controlP5 is a processing gui library.
*
@ -25,12 +23,14 @@ package controlP5;
*
*/
package controlP5;
import processing.core.PGraphics;
/**
* The CDrawable interface is used to draw controllers, primarily for internal use.
*/
public interface CDrawable {
@FunctionalInterface public interface CDrawable {
public void draw( PGraphics theGraphics );