2023-09-30 21:18:01 +01:00
|
|
|
using Content.Server.Dragon;
|
|
|
|
|
using Content.Shared.Roles;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Roles;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-10-10 10:48:56 +02:00
|
|
|
/// Added to mind role entities to tag that they are a space dragon.
|
2023-09-30 21:18:01 +01:00
|
|
|
/// </summary>
|
2024-10-10 10:48:56 +02:00
|
|
|
[RegisterComponent, Access(typeof(DragonSystem))]
|
|
|
|
|
public sealed partial class DragonRoleComponent : BaseMindRoleComponent
|
2023-09-30 21:18:01 +01:00
|
|
|
{
|
|
|
|
|
}
|