Files
tbd-station-14/Content.Shared/Ghost/Roles/SharedGhostRoleSystem.cs
2021-06-09 22:19:39 +02:00

21 lines
443 B
C#

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