13 lines
270 B
Dart
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,
|
|
);
|
|
}
|