2023-07-08 14:08:32 +10:00
|
|
|
|
using System.Numerics;
|
|
|
|
|
|
using Robust.Shared.GameStates;
|
2022-12-25 12:35:51 +01:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Medical.Cryogenics;
|
|
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
[NetworkedComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class InsideCryoPodComponent: Component
|
2022-12-25 12:35:51 +01:00
|
|
|
|
{
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
[DataField("previousOffset")]
|
|
|
|
|
|
public Vector2 PreviousOffset { get; set; } = new(0, 0);
|
|
|
|
|
|
}
|