mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
Tested the client against 1.21.11 on .net 10. Created a integration testing skill (end-to-end).
This commit is contained in:
parent
fb896c45a7
commit
5b9cc4aa0e
13 changed files with 553 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue