replace the client with something better

This commit is contained in:
ThatGamerBlue
2022-06-23 11:01:19 +01:00
parent 9edd632608
commit 1c1c64c729
5 changed files with 369 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package com.thatgamerblue.snake;
public class SnakePart {
public SnakePart next;
int x, y;
}