Class: Rect
- Inherits:
-
Object
- Object
- Rect
- Defined in:
- lib/RGSS.rb
Class Method Summary collapse
Instance Method Summary collapse
- #_dump(*ignored) ⇒ Object
-
#initialize(bytes) ⇒ Rect
constructor
A new instance of Rect.
Constructor Details
#initialize(bytes) ⇒ Rect
Returns a new instance of Rect.
103 104 105 |
# File 'lib/RGSS.rb', line 103 def initialize(bytes) @x, @y, @width, @height = *bytes.unpack('i4') end |
Class Method Details
._load(bytes) ⇒ Object
111 112 113 |
# File 'lib/RGSS.rb', line 111 def self._load(bytes) Rect.new(bytes) end |
Instance Method Details
#_dump(*ignored) ⇒ Object
107 108 109 |
# File 'lib/RGSS.rb', line 107 def _dump(*ignored) return [@x, @y, @width, @height].pack('i4') end |