public static BookshelfNetMessage Send(Librarian.BookShelf _BookShelf, GameObject ToWho) { BookshelfNetMessage msg = new BookshelfNetMessage(); msg.data = VariableViewerNetworking.ProcessBookShelf(_BookShelf); msg.SendTo(ToWho); return(msg); }
public static void SendBookShelfToClient(Librarian.BookShelf BookShelf, GameObject ToWho) { BookShelf.UpdateBookShelf(); BookshelfNetMessage.Send(BookShelf, ToWho); }
public static void SendBookShelfToClient(Librarian.BookShelf BookShelf) { BookShelf.UpdateBookShelf(); BookshelfNetMessage.Send(BookShelf); }