polyfox/moon

View on GitHub
modules/audio-null/mrblib/sound.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Moon
  class Sound
    def initialize(filename, format)
      @filename = filename
      @format = format
    end

    def play(gain = 1.0, pitch = 1.0, pan = 0.0)
    end
  end
end