13 lines
325 B
C#
13 lines
325 B
C#
|
|
namespace Content.Shared.Nutrition.AnimalHusbandry;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// This is used for denoting entities which are
|
|||
|
|
/// valid partners for <see cref="ReproductiveComponent"/>.
|
|||
|
|
/// This functions outside of the whitelist.
|
|||
|
|
/// </summary>
|
|||
|
|
[RegisterComponent]
|
|||
|
|
public sealed class ReproductivePartnerComponent : Component
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|