Class: Raylib::AutomationEventList
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- Raylib::AutomationEventList
- Defined in:
- lib/raylib_main.rb
Overview
Automation event list
Instance Method Summary collapse
- #capacity ⇒ Object
- #capacity=(v) ⇒ Object
- #count ⇒ Object
- #count=(v) ⇒ Object
- #events ⇒ Object
- #events=(v) ⇒ Object
Instance Method Details
#capacity ⇒ Object
1128 |
# File 'lib/raylib_main.rb', line 1128 def capacity = self[:capacity] |
#capacity=(v) ⇒ Object
1129 |
# File 'lib/raylib_main.rb', line 1129 def capacity=(v) self[:capacity] = v end |
#count ⇒ Object
1130 |
# File 'lib/raylib_main.rb', line 1130 def count = self[:count] |
#count=(v) ⇒ Object
1131 |
# File 'lib/raylib_main.rb', line 1131 def count=(v) self[:count] = v end |
#events ⇒ Object
1132 |
# File 'lib/raylib_main.rb', line 1132 def events = self[:events] |
#events=(v) ⇒ Object
1133 |
# File 'lib/raylib_main.rb', line 1133 def events=(v) self[:events] = v end |