Files
HexTowerDefense/dist/GameData/GdProjectileEffect.js
2026-04-19 01:16:27 +02:00

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