ZJMZNZG7GZL7BFB4ZG44BYVDCTWFMMID5R2Q6INUOQ3KUBP2NGXAC
DDJJXZKSQLXUXIMLKMKHY75JKC2IRA2A7SEVSUNL5FSCFH77T4IAC
ZHOSSPNKGFIKSFPDXCGLMSYMMX2J433VU2BUUWBKUH7TOLQUBSPQC
4UKXFJRZYO5WEPH5PKMYDZCWVWSEAXFSPL35G5NFIUBCMH3BCXEQC
Y7TNTUXM44MRLGA6FEG7J6BR77I7N3AIPZYVPXULOQZQ6PNOWJ7QC
WPC667PRTGRE7BNP6E7ZCQIKXYMIHJT3LUTTQT7VX2HQVRBXNIKAC
WO2ALETBVNH7N3NXJ6JKWCQ2YIZN6LBO7WEXPHAT3EQQJEUCJITQC
6REHBZAOJN4CVZY4HFXVNEUMWGQUXFTXMLQPXEH7RTH5FBL2TXIAC
PEQNQJYNX7QOEM67QH2UF7VZ43AXHUBO76DN77L43MEFRHVDBO5QC
GWNDFRV3SSE3VUV7AUE6KI7AXCEYYJDNRGRTJD2RNMSYG5OFPKIQC
DHO4JCJIELKX4R42XXAMAHVQTTE6OWULLP2QF4BXO3UWC5UTMSMAC
QUT2VGNOS2XSDLSYCSMILCKF343M56MRPRSUWN4GXWPGCK6APK2QC
import * as Pixi from "pixi.js";
export class Reticle {
public container: Pixi.Graphics;
constructor(args: {
}) {
this.container = new Pixi.Graphics();
this.container.lineStyle(2, 0x999999);
this.container.drawCircle(0, 0, 6);
// this.container.x = this.app.screen.width / 2;
// this.container.y = this.app.screen.height / 2;
this.container.interactive = true;
// this.onResize.push(() => {
// this.container.x = this.app.screen.width / 2;
// this.container.y = this.app.screen.height / 2;
// })
}
public rerender(props: {
width: number,
height: number
}) {
this.container.x = props.width;
this.container.y = props.height;
}
}