public static BookshelfNetMessage Send(Librarian.BookShelf _BookShelf, GameObject ToWho)
    {
        BookshelfNetMessage msg = new BookshelfNetMessage();

        msg.data = VariableViewerNetworking.ProcessBookShelf(_BookShelf);

        msg.SendTo(ToWho);
        return(msg);
    }