Files
tbd-station-14/Content.Shared/GameObjects/EntitySystems/SharedGhostRoleSystem.cs
Vera Aguilera Puerto 9ee0ec4106 Holiday System (#3122)
2021-02-12 10:45:22 +01:00

20 lines
408 B
C#

using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
namespace Content.Shared.GameObjects.EntitySystems
{
public abstract class SharedGhostRoleSystem : EntitySystem
{
}
[Serializable, NetSerializable]
public class GhostRole
{
public string Name { get; set; }
public string Description { get; set; }
public EntityUid Id;
}
}