Files
RAGECOOP-V/RageCoop.Core/Packets/Voice.cs

22 lines
508 B
C#
Raw Normal View History

2022-08-13 02:19:40 +02:00
using System.Collections.Generic;
namespace RageCoop.Core
{
internal partial class Packets
{
internal class Voice : Packet
{
public byte[] Buffer { get; set; }
public override PacketType Type => PacketType.Voice;
public override byte[] Serialize()
{
return Buffer;
2022-08-13 02:19:40 +02:00
}
public override void Deserialize(byte[] array)
{
Buffer = array;
2022-08-13 02:19:40 +02:00
}
}
}
}