Reorganize weapons

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-13 23:11:41 +01:00
parent a4bc6f8520
commit a6a5cb705d
5 changed files with 4 additions and 4 deletions

View File

@@ -2,10 +2,10 @@ import 'dart:math' as math;
import 'package:wolf_dart/classes/linear_coordinates.dart';
import 'package:wolf_dart/features/entities/collectible.dart';
import 'package:wolf_dart/features/weapon/weapon.dart';
import 'package:wolf_dart/features/weapon/weapons/knife.dart';
import 'package:wolf_dart/features/weapon/weapons/machine_gun.dart';
import 'package:wolf_dart/features/weapon/weapons/pistol.dart';
import 'package:wolf_dart/features/weapon/weapons/weapon.dart';
class Player {
// Spatial

View File

@@ -1,4 +1,4 @@
import 'package:wolf_dart/features/weapon/weapons/weapon.dart';
import 'package:wolf_dart/features/weapon/weapon.dart';
class Knife extends Weapon {
Knife()

View File

@@ -1,4 +1,4 @@
import 'package:wolf_dart/features/weapon/weapons/weapon.dart';
import 'package:wolf_dart/features/weapon/weapon.dart';
class MachineGun extends Weapon {
MachineGun()

View File

@@ -1,4 +1,4 @@
import 'package:wolf_dart/features/weapon/weapons/weapon.dart';
import 'package:wolf_dart/features/weapon/weapon.dart';
class Pistol extends Weapon {
Pistol()