10 lines
155 B
TypeScript
10 lines
155 B
TypeScript
|
|
// Shape component
|
||
|
|
export class Shape {
|
||
|
|
onStage = false
|
||
|
|
shape: PIXI.Graphics
|
||
|
|
|
||
|
|
reset() {
|
||
|
|
this.onStage = false
|
||
|
|
this.shape = null
|
||
|
|
}
|
||
|
|
}
|