Skip to content

Instantly share code, notes, and snippets.

View neoeno's full-sized avatar
🧨
BANG

Kay Lack neoeno

🧨
BANG
View GitHub Profile
import java.util.Random;
class Walker {
int[] xYPosition = new int[2];
int[] prevXYPosition = new int[2];
Random generator;
Walker() {
generator = new Random();