Add pathfinding for dynamic bodies (#17416)

Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
Vordenburg
2023-07-28 02:28:00 -04:00
committed by GitHub
parent 773b87618b
commit 494b9e5b93
2 changed files with 64 additions and 48 deletions

View File

@@ -44,6 +44,7 @@ namespace Content.Server.NPC.Pathfinding
[Dependency] private readonly IPlayerManager _playerManager = default!;
[Dependency] private readonly IRobustRandom _random = default!;
[Dependency] private readonly DestructibleSystem _destructible = default!;
[Dependency] private readonly EntityLookupSystem _lookup = default!;
[Dependency] private readonly FixtureSystem _fixtures = default!;
[Dependency] private readonly SharedPhysicsSystem _physics = default!;