Files
wolf_dart/lib/features/player/weapons/pistol.dart
2026-03-13 20:36:40 +01:00

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,
);
}