Reorganized files

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-13 23:10:39 +01:00
parent 3086e5a8f4
commit a4bc6f8520
6 changed files with 15 additions and 14 deletions

View File

@@ -0,0 +1,11 @@
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,
);
}