lib/vedeu/support/cursor.rb in vedeu-0.1.19 vs lib/vedeu/support/cursor.rb in vedeu-0.2.0

- old
+ new

@@ -3,10 +3,26 @@ # Stores and manipulates the position of the current cursor. # # @api private class Cursor - attr_reader :top, :bottom, :left, :right, :cursor_x, :cursor_y + # @return [Fixnum] + attr_reader :top + + # @return [Fixnum] + attr_reader :bottom + + # @return [Fixnum] + attr_reader :left + + # @return [Fixnum] + attr_reader :right + + # @return [Fixnum] + attr_reader :cursor_x + + # @return [Fixnum] + attr_reader :cursor_y # Provides a new instance of Cursor. # # @param attributes [Hash] # @return [Cursor]