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
1135 |
# File 'lib/raylib_main.rb', line 1135 def capacity = self[:capacity] |
#capacity=(v) ⇒ Object
1136 |
# File 'lib/raylib_main.rb', line 1136 def capacity=(v) self[:capacity] = v end |
#count ⇒ Object
1137 |
# File 'lib/raylib_main.rb', line 1137 def count = self[:count] |
#count=(v) ⇒ Object
1138 |
# File 'lib/raylib_main.rb', line 1138 def count=(v) self[:count] = v end |
#events ⇒ Object
1139 |
# File 'lib/raylib_main.rb', line 1139 def events = self[:events] |
#events=(v) ⇒ Object
1140 |
# File 'lib/raylib_main.rb', line 1140 def events=(v) self[:events] = v end |