12 lines
241 B
Dart
12 lines
241 B
Dart
import 'package:wolf_dart/features/weapon/weapons/weapon.dart';
|
|
|
|
class Pistol extends Weapon {
|
|
Pistol()
|
|
: super(
|
|
name: "Pistol",
|
|
idleSprite: 421,
|
|
fireFrames: [422, 423, 424, 425],
|
|
damage: 20,
|
|
);
|
|
}
|