13 lines
262 B
Dart
13 lines
262 B
Dart
import 'package:wolf_dart/features/weapon/weapon.dart';
|
|
|
|
class ChainGun extends Weapon {
|
|
ChainGun()
|
|
: super(
|
|
type: WeaponType.chainGun,
|
|
idleSprite: 432,
|
|
fireFrames: [433, 434],
|
|
damage: 40,
|
|
msPerFrame: 30,
|
|
);
|
|
}
|