/* call-seq:
 *      plugin.register
 *
 *      This method will register the ruby plugin so it will respond
 *      to the gameserver events.
 */

static VALUE
plugin_register(VALUE self)
{
        rb_ary_push(plugin_list, self);

        return Qnil;
}