mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* lol * fix * locale separate file * АЙ ЛАВ #ВВДП --------- Co-authored-by: vanx <discord@vanxxxx>
16 lines
309 B
C#
16 lines
309 B
C#
namespace Content.Server._White.PreventGridLeave;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class PreventGridLeaveComponent : Component
|
|
{
|
|
[DataField]
|
|
public EntityUid? GridId;
|
|
|
|
public bool IsTimerOn;
|
|
|
|
public TimeSpan TimerStarted;
|
|
|
|
[DataField]
|
|
public int KillTimer = 30; // Seconds
|
|
}
|