class Spielbash::Context

Attributes

height[RW]
reading_delay_s[RW]
typing_delay_s[RW]
wait[RW]
wait_check_cmd[RW]
width[RW]

Public Class Methods

new(typinig_delay_s, reading_delay_s, wait, width, height, wait_check_cmd = nil) click to toggle source
# File lib/spielbash/model/context.rb, line 5
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