Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. using System.Linq;
  2. using System.Collections.Generic;
  3. using Plus.HabboHotel.Items;
  4. using System.Drawing;
  5.  
  6. namespace Plus.Communication.Packets.Outgoing.Rooms.FloorPlan
  7. {
  8. class FloorPlanFloorMapComposer : ServerPacket
  9. {
  10. public FloorPlanFloorMapComposer(List<Point> Items)
  11. : base(ServerPacketHeader.FloorPlanFloorMapMessageComposer)
  12. {
  13. base.WriteInteger(Items.Count);
  14. foreach (Point Item in Items.ToList())
  15. {
  16. base.WriteInteger(Item.X);
  17. base.WriteInteger(Item.Y);
  18. }
  19. }
  20. }
  21. }