@2003scape/rsc-client
Version:
runescape classic web client
23 lines (22 loc) • 521 B
JavaScript
class Polygon {
constructor() {
this.minPlaneX = 0;
this.minPlaneY = 0;
this.maxPlaneX = 0;
this.maxPlaneY = 0;
this.minZ = 0;
this.maxZ = 0;
this.model = null;
this.face = 0;
this.depth = 0;
this.normalX = 0;
this.normalY = 0;
this.normalZ = 0;
this.visibility = 0;
this.facefill = 0;
this.skipSomething = false;
this.index = 0;
this.index2 = 0;
}
}
module.exports = Polygon;