SRMP-Public/SRMP/Packets/LandPlots/PacketLandPlotUpgrade.cs

19 lines
430 B
C#
Raw Normal View History

2023-05-29 22:23:11 +02:00
using Lidgren.Network;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SRMultiplayer.Packets
{
[Packet(PacketType.LandPlotUpgrade)]
public class PacketLandPlotUpgrade : Packet
{
public string ID;
public byte Upgrade;
public PacketLandPlotUpgrade() { }
public PacketLandPlotUpgrade(NetIncomingMessage im) { Deserialize(im); }
}
}