Revert "thistitlemakesthebothappy: replace the client with something better"

This commit is contained in:
ThatGamerBlue
2022-06-23 20:55:25 +01:00
committed by GitHub
parent 1e48eb59f1
commit c524cb88a7
5 changed files with 0 additions and 404 deletions

View File

@@ -1,18 +0,0 @@
package com.thatgamerblue.snake;
public enum Direction {
UP(0, -1, "^"),
DOWN(0, 1, "v"),
LEFT(-1, 0, "<"),
RIGHT(1, 0, ">");
public int xOffset;
public int yOffset;
public String display;
Direction(int xOff, int yOff, String display) {
xOffset = xOff;
yOffset = yOff;
this.display = display;
}
}