13 lines
298 B
C#
13 lines
298 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Turrets;
|
|
|
|
/// <summary>
|
|
/// This component designates a turret that is under the direct control of the station AI.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class StationAiTurretComponent : Component
|
|
{
|
|
|
|
}
|