Files
crystall-punk-14/Content.Shared/Ghost/Roles/SharedGhostRoleSystem.cs

15 lines
356 B
C#
Raw Normal View History

using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Ghost.Roles
{
[Serializable, NetSerializable]
public sealed class GhostRole
{
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public EntityUid Id;
}
}