mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
11 lines
No EOL
331 B
C#
11 lines
No EOL
331 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MinecraftClient.Protocol.Handlers.StructuredComponents.Core;
|
|
|
|
public abstract class SubComponent(DataTypes dataTypes)
|
|
{
|
|
protected DataTypes DataTypes { get; private set; } = dataTypes;
|
|
|
|
public abstract void Parse(Queue<byte> data);
|
|
public abstract Queue<byte> Serialize();
|
|
} |