Files
wolf_dart/lib/features/weapon/weapons/pistol.dart
2026-03-14 15:34:27 +01:00

13 lines
270 B
Dart

import 'package:wolf_dart/features/weapon/weapon.dart';
class Pistol extends Weapon {
Pistol()
: super(
type: WeaponType.pistol,
idleSprite: 421,
fireFrames: [422, 423, 424, 425],
damage: 20,
isAutomatic: false,
);
}