~ruther/NosSmooth

ref: ba49ad7e1b0431be4a22b3209670e439050b2548 NosSmooth/Core/NosSmooth.Packets/Packets/Server/Entities/MovePacket.cs -rw-r--r-- 1.0 KiB
ba49ad7e — František Boháček Merge pull request #14 from Rutherther/packets-span 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
//  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.Attributes;
using NosSmooth.Packets.Enums;

namespace NosSmooth.Packets.Packets.Server.Entities;

/// <summary>
/// The entity has moved to the given position.
/// </summary>
/// <param name="EntityType">The type of the entity that has moved.</param>
/// <param name="EntityId">The id of the entity.</param>
/// <param name="MapX">The x coordinate the entity has moved to.</param>
/// <param name="MapY">The y coordinate the entity has moved to.</param>
/// <param name="Speed">The speed of the entity.</param>
[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;
Do not follow this link