mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
16 lines
No EOL
482 B
C#
16 lines
No EOL
482 B
C#
using System.Collections.Generic;
|
|
using MinecraftClient.Protocol.Handlers.StructuredComponents.Core;
|
|
|
|
namespace MinecraftClient.Protocol.Handlers.StructuredComponents.Components;
|
|
|
|
public class EmptyComponent(DataTypes dataTypes, SubComponentRegistry subComponentRegistry) : StructuredComponent(dataTypes, subComponentRegistry)
|
|
{
|
|
public override void Parse(Queue<byte> data)
|
|
{
|
|
}
|
|
|
|
public override Queue<byte> Serialize()
|
|
{
|
|
return new Queue<byte>();
|
|
}
|
|
} |