# File lib/as_gamestate.rb, line 32
  def input(event_id, value)
    proc = @actions[event_id]
    proc.call(value) if proc
    @input_listeners.send_each(:input, event_id, value)
  end