コード例 #1
0
ファイル: wallItems.cs プロジェクト: scottstamp/Woodpecker
        /// <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);
        }
コード例 #2
0
ファイル: wallItems.cs プロジェクト: scottstamp/Woodpecker
        /// <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);
        }
コード例 #3
0
ファイル: wallItems.cs プロジェクト: habb0/Woodpecker
 /// <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);
 }
コード例 #4
0
ファイル: wallItems.cs プロジェクト: habb0/Woodpecker
 /// <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);
 }