2023-05-14 21:46:28 +10:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Movement.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Automatically rotates eye upon grid traversals.
|
|
|
|
|
/// </summary>
|
2024-11-24 03:52:58 +11:00
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class AutoOrientComponent : Component
|
2023-05-14 21:46:28 +10:00
|
|
|
{
|
2024-11-24 03:52:58 +11:00
|
|
|
[DataField, AutoNetworkedField, AutoPausedField]
|
|
|
|
|
public TimeSpan? NextChange;
|
2023-05-14 21:46:28 +10:00
|
|
|
}
|