12 lines
233 B
Dart
12 lines
233 B
Dart
import 'package:wolf_dart/features/player/weapon.dart';
|
|
|
|
class Pistol extends Weapon {
|
|
Pistol()
|
|
: super(
|
|
name: "Pistol",
|
|
idleSprite: 408,
|
|
fireFrames: [409, 410, 411, 412],
|
|
damage: 20,
|
|
);
|
|
}
|