This repository acts as a personal archive for my solutions to EdX course *Data Structures and Software Design* from PennX.
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.

13 lines
235 B

  1. public class Room extends MapSite{
  2. public int roomNumber;
  3. public MapSite[] mapsites;
  4. public Wall[] sides;
  5. public Wall getSide(int foo){
  6. return null;
  7. }
  8. public void setSide(int foo, Wall wall){
  9. }
  10. }