Advertisement
Guest User

SnakePart.java

a guest
Nov 15th, 2018
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1. package com.codef0x.snake;
  2.  
  3. public class SnakePart {
  4.     int x;
  5.     int y;
  6.  
  7.     public SnakePart(int x, int y) {
  8.         this.x = x;
  9.         this.y = y;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement