forked from space-syndicate/space-station-14
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a27e340
commit fbb3a06
Showing
4 changed files
with
75 additions
and
17 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
Content.Server/_CorvaxNext/AutoCryoSleep/AutoCryoSleepComponent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Robust.Shared.Prototypes; | ||
|
||
namespace Content.Server._CorvaxNext.AutoCryoSleep; | ||
|
||
[RegisterComponent] | ||
public sealed partial class AutoCryoSleepComponent : Component | ||
{ | ||
[ViewVariables(VVAccess.ReadWrite)] | ||
public TimeSpan Disconnected; | ||
|
||
[ViewVariables(VVAccess.ReadWrite)] | ||
public EntProtoId? EffectId = "JetpackEffect"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
Content.Server/_CorvaxNext/AutoCryoSleep/AutoCryoSleepableComponent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
namespace Content.Server._CorvaxNext.AutoCryoSleep; | ||
|
||
[RegisterComponent] | ||
public sealed partial class AutoCryoSleepableComponent : Component; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters