using System.Linq;
using System.Collections.Generic;
using Plus.HabboHotel.Items;
using System.Drawing;
namespace Plus.Communication.Packets.Outgoing.Rooms.FloorPlan
{
class FloorPlanFloorMapComposer : ServerPacket
{
public FloorPlanFloorMapComposer(List<Point> Items)
: base(ServerPacketHeader.FloorPlanFloorMapMessageComposer)
{
base.WriteInteger(Items.Count);
foreach (Point Item in Items.ToList())
{
base.WriteInteger(Item.X);
base.WriteInteger(Item.Y);
}
}
}
}