16 lines
No EOL
391 B
C#
16 lines
No EOL
391 B
C#
using Lidgren.Network;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SRMultiplayer.Packets
|
|
{
|
|
[Packet(PacketType.WorldCredits)]
|
|
public class PacketWorldCredits : Packet
|
|
{
|
|
public PacketWorldCredits() { }
|
|
public PacketWorldCredits(NetIncomingMessage im) { Deserialize(im); }
|
|
}
|
|
} |