mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-04 08:39:05 +00:00
50 lines
923 B
Java
50 lines
923 B
Java
package com.rs2.util;
|
|
|
|
public class DoorData {
|
|
private final int id;
|
|
private final Location[] locations;
|
|
private final int face;
|
|
private final int type;
|
|
|
|
public DoorData(int id, Location[] locations, int face, int type) {
|
|
this.id = id;
|
|
this.locations = locations;
|
|
this.face = face;
|
|
this.type = type;
|
|
}
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public Location[] getLocations() {
|
|
return locations;
|
|
}
|
|
|
|
public int getFace() {
|
|
return face;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public static class Location {
|
|
private int x;
|
|
private int y;
|
|
private int height;
|
|
|
|
public int getX() {
|
|
return x;
|
|
}
|
|
|
|
public int getY() {
|
|
return y;
|
|
}
|
|
|
|
public int getHeight() {
|
|
return height;
|
|
}
|
|
}
|
|
}
|