namespace Content.Server._CP14.Footprints.Components;
///
/// allows an entity to leave footprints on the tiles
///
[RegisterComponent, Access(typeof(CP14FootprintsSystem))]
public sealed partial class CP14FootprintTrailerComponent : Component
{
///
/// Source and type of footprint
///
[DataField]
public CP14FootprintHolderComponent? holder = null;
}