You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
207 B

  1. package net.hoo2.auth.labyrinth;
  2. public class Board {
  3. int size() { return N; }
  4. private int N;
  5. private int S;
  6. private int W;
  7. private Tile[] tiles;
  8. private Supply[] supplies;
  9. }