class Input
Public Class Methods
new(handler)
click to toggle source
# File lib/delve/input/input.rb, line 3 def initialize(handler) raise 'Cannot initialize display with no renderer' unless handler @handler = handler end
Public Instance Methods
wait_for_input()
click to toggle source
# File lib/delve/input/input.rb, line 8 def wait_for_input @handler.wait_for_input end