mine2d/Mine2d/game/backend/network/packets/PlacePacket.cs

11 lines
262 B
C#

namespace Mine2d.game.backend.network.packets;
public class PlacePacket : Packet
{
public override PacketType Type => PacketType.Place;
public Guid PlayerGuid { get; init; }
public Vector2 Target { get; init; }
public int Slot { get; init; }
}