2024-09-01 20:42:39 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using MinecraftClient.Protocol.Handlers.StructuredComponents.Core;
|
|
|
|
|
|
2024-09-11 19:12:31 +02:00
|
|
|
namespace MinecraftClient.Protocol.Handlers.StructuredComponents.Components;
|
2024-09-01 20:42:39 +02:00
|
|
|
|
2024-09-11 19:12:31 +02:00
|
|
|
public class EmptyComponent(DataTypes dataTypes, SubComponentRegistry subComponentRegistry) : StructuredComponent(dataTypes, subComponentRegistry)
|
2024-09-01 20:42:39 +02:00
|
|
|
{
|
|
|
|
|
public override void Parse(Queue<byte> data)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Queue<byte> Serialize()
|
|
|
|
|
{
|
2024-09-11 19:12:31 +02:00
|
|
|
return new Queue<byte>();
|
2024-09-01 20:42:39 +02:00
|
|
|
}
|
|
|
|
|
}
|