/// <summary> /// Broadcoasts the state update of a given wall item to all active room users. /// </summary> /// <param name="pItem">The wallItem instance of the wall item that is updated.</param> private void broadcoastWallItemStateUpdate(wallItem pItem) { serverMessage Message = new serverMessage(85); // "AU" Message.Append(pItem.ToString()); this.sendMessage(Message); }
/// <summary> /// Broacoasts the placement of a wall item to all room users. /// </summary> /// <param name="pItem">The wallItem instance of the wall item that is placed.</param> private void broadcoastWallItemPlacement(wallItem pItem) { serverMessage Message = new serverMessage(83); // "AS" Message.Append(pItem.ToString()); this.sendMessage(Message); }