11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
export class GdProjectileEffect {
|
|
type;
|
|
amount;
|
|
speed;
|
|
constructor(type, amount, speed) {
|
|
this.type = type;
|
|
this.amount = amount;
|
|
this.speed = speed;
|
|
}
|
|
}
|
|
//# sourceMappingURL=GdProjectileEffect.js.map
|