Beispiel #1
0
 public boolean hasShadow() {
   return tile.hasShadow();
 }
Beispiel #2
0
 public boolean canMove() {
   return tile.canMove();
 }
Beispiel #3
0
 public boolean canSee() {
   return tile.canSee();
 }
Beispiel #4
0
 public MapPiece(MapTilePiece tile) {
   this.tile = tile;
   Image[] images = tile.getImages();
   this.image = images[(int) (images.length * Math.random())];
 }