class SayItWithGraphs::Characters::Space

Public Instance Methods

define() click to toggle source
# File lib/say_it_with_graphs/characters/space.rb, line 6
def define
  ' '
end
draw() click to toggle source
# File lib/say_it_with_graphs/characters/space.rb, line 10
def draw
  frame do |f|
    # nothing becaise its just a space
  end
end