Class: Raylib::FilePathList
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- Raylib::FilePathList
- Defined in:
- lib/raylib_main.rb
Overview
File path list
Instance Method Summary collapse
- #capacity ⇒ Object
- #capacity=(v) ⇒ Object
- #count ⇒ Object
- #count=(v) ⇒ Object
- #paths ⇒ Object
- #paths=(v) ⇒ Object
Instance Method Details
#capacity ⇒ Object
1098 |
# File 'lib/raylib_main.rb', line 1098 def capacity = self[:capacity] |
#capacity=(v) ⇒ Object
1099 |
# File 'lib/raylib_main.rb', line 1099 def capacity=(v) self[:capacity] = v end |
#count ⇒ Object
1100 |
# File 'lib/raylib_main.rb', line 1100 def count = self[:count] |
#count=(v) ⇒ Object
1101 |
# File 'lib/raylib_main.rb', line 1101 def count=(v) self[:count] = v end |
#paths ⇒ Object
1102 |
# File 'lib/raylib_main.rb', line 1102 def paths = self[:paths] |
#paths=(v) ⇒ Object
1103 |
# File 'lib/raylib_main.rb', line 1103 def paths=(v) self[:paths] = v end |