/* call-seq: * clock.reset() -> nil * * This function puts the time counter back to zero. */ static VALUE Clock_Reset( VALUE self ) { sf::Clock *object = NULL; Data_Get_Struct( self, sf::Clock, object ); object->Reset(); return Qnil; }