/*
* call-seq:
* new
*
* **NOTE**: Don't use this method. Use Music.load.
*
* Raises NotImplementedError.
*
*/
static VALUE rg_music_new( int argc, VALUE *ARGV, VALUE self )
{
rb_raise(rb_eNotImpError, "Music.new is not implemented. Use Music.load to load a music file.");
}