Method: Bloops::Sound#type

Defined in:
ext/ruby/rubyext.c

#typeObject



156
157
158
159
160
161
162
# File 'ext/ruby/rubyext.c', line 156

VALUE
rb_bloops_get_type(VALUE self)
{
  bloopsaphone *P;
  Data_Get_Struct(self, bloopsaphone, P);
  return INT2NUM((int)P->params.type);
}