Skip to content

Instantly share code, notes, and snippets.

@bomatson
Last active August 29, 2015 13:57
Show Gist options
  • Save bomatson/9557178 to your computer and use it in GitHub Desktop.
Save bomatson/9557178 to your computer and use it in GitHub Desktop.
class DrumSet < Artoo::MainRobot
#...
def initialize
@bass_drum = Surface.new(:kick)
@snare = Surface.new(:snare)
@hi_hat = Surface.new(:hat)
@crazy_sound = Surface.new(left: 151, right: 200, note: 22)
@drums = [@snare, @bass_drum, @hi_hat, @crazy_sound]
super
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment