We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5777bb commit 36c6551Copy full SHA for 36c6551
2 files changed
test/sketches/key_event.rb
@@ -6,7 +6,7 @@ class CustomProxySketch < Propane::App
6
7
# A simple demonstration of vanilla processing 'reflection' methods using
8
# propane :library_proxy. See my_library.rb code for the guts.
9
- load_libraries :custom_proxy, :my_library
+ load_libraries :library_proxy, :my_library
10
11
attr_reader :visible
12
test/sketches/library/my_library/my_library.rb
@@ -1,7 +1,7 @@
1
-# This class demonstrates how by inheriting from the abstract class CustomProxy
+# This class demonstrates how by inheriting from the abstract class LibraryProxy
2
# we can access 'keyEvent' and 'draw' (Note we need a draw method even
3
# though can be empty)
4
-class MyLibrary < CustomProxy
+class MyLibrary < LibraryProxy
5
java_import 'processing.event.KeyEvent'
attr_reader :app
0 commit comments