namespace Content.Server._CP14.Cooking;
/// <summary>
/// Attempting to add a random dish to CP14FoodHolderComponent
/// </summary>
[RegisterComponent, Access(typeof(CP14CookingSystem))]
public sealed partial class CP14RandomFoodDataComponent : Component
{
/// Chance of food appearing
[DataField]
public float Prob = 0.75f;
public bool Rename = true;
}