2024-04-06 21:31:51 +09:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared._White.Telescope;
|
|
|
|
|
|
2024-05-14 21:44:14 +03:00
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
2024-04-06 21:31:51 +09:00
|
|
|
public sealed partial class TelescopeComponent : Component
|
|
|
|
|
{
|
2024-05-14 21:44:14 +03:00
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
|
2024-06-02 17:50:04 +00:00
|
|
|
public float Divisor = 0.1f;
|
|
|
|
|
|
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
|
|
|
|
|
public float LerpAmount = 0.1f;
|
2024-04-06 21:31:51 +09:00
|
|
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public EntityUid? LastHoldingEntity;
|
|
|
|
|
}
|