* separate rummager into its own component/system * thing * address review and entitytables * reviews * review * warnings * Update Content.Shared/RatKing/Systems/RummagerSystem.cs --------- Co-authored-by: Jessica M <jessica@maybe.sh> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
12 lines
323 B
C#
12 lines
323 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.RatKing.Components;
|
|
|
|
/// <summary>
|
|
/// This is used for entities that can rummage through entities
|
|
/// with the <see cref="RummageableComponent"/>
|
|
/// </summary>
|
|
///
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class RummagerComponent : Component;
|