Method: PM::PatchMaster#start
- Defined in:
- lib/patchmaster/patchmaster.rb
#start(init_cursor = true) ⇒ Object
If init_cursor is true (the default), initializes current song list, song, and patch.
103 104 105 106 107 108 |
# File 'lib/patchmaster/patchmaster.rb', line 103 def start(init_cursor = true) @cursor.init if init_cursor @cursor.patch.start if @cursor.patch @running = true @inputs.map(&:start) end |