17 lines
456 B
C#
17 lines
456 B
C#
|
|
namespace Content.Shared.Vehicle.Components
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Added to objects inside a vehicle to stop people besides the rider from
|
||
|
|
/// removing them.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent]
|
||
|
|
public sealed class InVehicleComponent : Component
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The vehicle this rider is currently riding.
|
||
|
|
/// </summary>
|
||
|
|
[ViewVariables]
|
||
|
|
public VehicleComponent Vehicle = default!;
|
||
|
|
}
|
||
|
|
}
|