Files
tbd-station-14/Content.Shared/Ghost/Roles/SharedGhostRoleSystem.cs
2022-01-12 18:25:05 +11:00

15 lines
349 B
C#

using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
namespace Content.Shared.Ghost.Roles
{
[Serializable, NetSerializable]
public class GhostRole
{
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public EntityUid Id;
}
}