Docs/cleanup for node system.

This commit is contained in:
Pieter-Jan Briers
2021-07-06 21:25:04 +02:00
parent cfe4a26d1f
commit b79457dde9
4 changed files with 84 additions and 2 deletions

View File

@@ -17,11 +17,13 @@ using Robust.Shared.Utility;
namespace Content.Server.NodeContainer.EntitySystems
{
/// <summary>
/// Entity system that manages <see cref="NodeGroupSystem"/> and <see cref="Node"/> updating.
/// </summary>
/// <seealso cref="NodeContainerSystem"/>
[UsedImplicitly]
public class NodeGroupSystem : EntitySystem
{
[Dependency] private readonly IEntityManager _entityManager = default!;
[Dependency] private readonly IPlayerManager _playerManager = default!;
[Dependency] private readonly IAdminManager _adminManager = default!;
[Dependency] private readonly INodeGroupFactory _nodeGroupFactory = default!;