summaryrefslogtreecommitdiffhomepage
path: root/test/input.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/input.rb')
-rw-r--r--test/input.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/test/input.rb b/test/input.rb
deleted file mode 100644
index 82bce4a..0000000
--- a/test/input.rb
+++ /dev/null
@@ -1,35 +0,0 @@
-require 'ruby2d'
-
-set width: 200, height: 100, title: "Ruby 2D — Input"
-
-on key_down: 'a' do
- puts "Key 'a' down"
-end
-
-on key: 'b' do
- puts "Key 'b' held down"
-end
-
-on key_up: 'c' do
- puts "Key 'c' up"
-end
-
-on key_down: 'any' do
- puts "A key was pressed"
-end
-
-on_key do |key|
- if key == 'd'
- puts "on_key: #{key}"
- end
-end
-
-on mouse: 'any' do |x, y|
- puts "Mouse clicked at: #{x}, #{y}"
-end
-
-on key: 'escape' do
- close
-end
-
-show