Tested the client against 1.21.11 on .net 10. Created a integration testing skill (end-to-end).

This commit is contained in:
Anon 2026-03-21 21:02:13 +01:00
parent fb896c45a7
commit 5b9cc4aa0e
13 changed files with 553 additions and 1 deletions

View file

@ -85,6 +85,13 @@ namespace MinecraftClient.ChatBots
{
public double x, y, z;
public Coordination()
{
x = 0;
y = 0;
z = 0;
}
public Coordination(double x, double y, double z)
{
this.x = x; this.y = y; this.z = z;