NetworkMessage msg = new NetworkMessage(); msg.AddOutfit(playerID, outfitID); networkManager.Send(msg);This code creates a new NetworkMessage and adds an outfit to the player with the given playerID using the outfitID. The message is then sent through the networkManager. The package library for this functionality could be a game-specific package library that handles all the game-related functions, or a generic network package library.