mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-15 03:31:44 +01:00
10 lines
288 B
C#
10 lines
288 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Roles.Components;
|
|
|
|
/// <summary>
|
|
/// Added to mind role entities to tag that they are a space dragon.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class DragonRoleComponent : BaseMindRoleComponent;
|