Sha256: bc366405379b248203dfb58c4b357f1dee2e1d2d6925d209e8bcf9801e7b4cd6

Contents?: true

Size: 423 Bytes

Versions: 4

Compression:

Stored size: 423 Bytes

Contents

module Spielbash
  class Context
    attr_accessor :typing_delay_s, :reading_delay_s, :wait, :width, :height, :wait_check_cmd

    def initialize(typinig_delay_s, reading_delay_s, wait, width, height, wait_check_cmd = nil)
      @typing_delay_s = typinig_delay_s
      @reading_delay_s = reading_delay_s
      @wait = wait
      @width = width
      @height = height
      @wait_check_cmd = wait_check_cmd
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spielbash-0.1.4 lib/spielbash/model/context.rb
spielbash-0.1.3 lib/spielbash/model/context.rb
spielbash-0.1.2 lib/spielbash/model/context.rb
spielbash-0.1.1 lib/spielbash/model/context.rb