12 lines
277 B
C#
12 lines
277 B
C#
using Content.Shared.Roles.Components;
|
|
|
|
namespace Content.Server._CP14.Roles;
|
|
|
|
/// <summary>
|
|
/// Added to mind role entities to tag that they are a Vampire.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class CP14VampireRoleComponent : BaseMindRoleComponent
|
|
{
|
|
}
|