* init * fixes * fixes * balance changes * saw added * some fixes facecast added * sunrise marking fixes added forgotten not versioned files from last commit * space * minor refactoring * facecast box added minor fixes * minor fixes added forgotten non versioned files from last commit * balance changes * merge conflicts resolved * ftl fixea * balance changes
14 lines
273 B
C#
14 lines
273 B
C#
|
|
using Content.Shared.FixedPoint;
|
|
|
|
namespace Content.Server.FaceCast;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class FaceCastComponent : Component
|
|
{
|
|
public TimeSpan? StartCastingTime = null;
|
|
|
|
public EntityUid? Equiper = null;
|
|
|
|
public Double TimeToCast = 5;
|
|
}
|