12
lib/features/weapon/weapons/machine_gun.dart
Normal file
12
lib/features/weapon/weapons/machine_gun.dart
Normal file
@@ -0,0 +1,12 @@
|
||||
import 'package:wolf_dart/features/weapon/weapons/weapon.dart';
|
||||
|
||||
class MachineGun extends Weapon {
|
||||
MachineGun()
|
||||
: super(
|
||||
name: "Machine Gun",
|
||||
idleSprite: 413,
|
||||
fireFrames: [414, 415],
|
||||
damage: 20,
|
||||
msPerFrame: 80,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user