CabinGame/Program/src/Components/shape.ts

10 lines
No EOL
155 B
TypeScript

// Shape component
export class Shape {
onStage = false
shape: PIXI.Graphics
reset() {
this.onStage = false
this.shape = null
}
}