public BSPLeaf(int type, int vislist, BoundBoxShort bound, ushort lface_id, ushort lface_num, byte sndwater, byte sndsky, byte sndslime, byte sndlava) { this.type = type; this.vislist = vislist; this.bound = bound; this.lface_id = lface_id; this.lface_num = lface_num; this.sndwater = sndwater; this.sndsky = sndsky; this.sndslime = sndslime; this.sndlava = sndlava; }
public BSPNode(int plane_id, ushort front, ushort back, BoundBoxShort box, ushort face_id, ushort face_num) { this.plane_id = plane_id; this.front = front; this.back = back; this.box = box; this.face_id = face_id; this.face_num = face_num; }