//
// MltObjSubPacket.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using NosSmooth.PacketSerializer.Abstractions.Attributes;
namespace NosSmooth.Packets.Server.Miniland;
///
/// Sub packet of .
///
/// The vnum of the item.
/// The slot.
/// The x coordinate.
/// The y coordinate.
[PacketHeader("mltobjsub", PacketSource.Server)]
[GenerateSerializer(true)]
public record MltObjSubPacket
(
[PacketIndex(0)]
int VNum,
[PacketIndex(1)]
int Slot,
[PacketIndex(2)]
short X,
[PacketIndex(3)]
short Y
) : IPacket;