//
//  MovePacket.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.Packets.Enums;
using NosSmooth.Packets.Enums.Entities;
using NosSmooth.PacketSerializer.Abstractions.Attributes;
namespace NosSmooth.Packets.Server.Entities;
/// 
/// The entity has moved to the given position.
/// 
/// The type of the entity that has moved.
/// The id of the entity.
/// The x coordinate the entity has moved to.
/// The y coordinate the entity has moved to.
/// The speed of the entity.
[PacketHeader("mv", PacketSource.Server)]
[GenerateSerializer(true)]
public record MovePacket
(
    [PacketIndex(0)]
    EntityType EntityType,
    [PacketIndex(1)]
    long EntityId,
    [PacketIndex(2)]
    short MapX,
    [PacketIndex(3)]
    short MapY,
    [PacketIndex(4)]
    byte Speed
) : IPacket;