2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Skills.FoodType
commentId : T:TinyLife.Skills.FoodType
id : FoodType
parent : TinyLife.Skills
children :
2023-03-30 18:07:55 +02:00
- TinyLife.Skills.FoodType.#ctor(System.String,System.Int32,System.Int32,System.Single,TinyLife.Skills.FoodType.FoodIntolerance,TinyLife.Skills.FoodType.IngredientSource,System.Nullable{Microsoft.Xna.Framework.Color})
2022-07-04 16:50:43 +02:00
- TinyLife.Skills.FoodType.AdditionalObject
2022-06-09 20:12:10 +02:00
- TinyLife.Skills.FoodType.AllIntolerances
- TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single)
- TinyLife.Skills.FoodType.CanCreateFunc
- TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean)
- TinyLife.Skills.FoodType.CanEatFunc
2022-07-04 16:50:43 +02:00
- TinyLife.Skills.FoodType.CanHaveCandle
2022-05-24 13:36:05 +02:00
- TinyLife.Skills.FoodType.Color
2021-10-14 20:30:40 +02:00
- TinyLife.Skills.FoodType.Construct(TinyLife.World.Map,TinyLife.Skills.Quality,System.TimeSpan,System.Int32,TinyLife.Objects.Person,System.Nullable{System.Guid},System.Boolean)
- TinyLife.Skills.FoodType.ConstructUnfinished(TinyLife.Objects.FurnitureType,TinyLife.World.Map,System.TimeSpan,System.Int32,TinyLife.Objects.Person,System.Nullable{System.Guid},System.Boolean)
2022-05-24 13:36:05 +02:00
- TinyLife.Skills.FoodType.Container
2022-07-04 16:50:43 +02:00
- TinyLife.Skills.FoodType.CustomTextureFunc
2021-08-04 06:51:12 +02:00
- TinyLife.Skills.FoodType.DisplayName
2022-07-04 16:50:43 +02:00
- TinyLife.Skills.FoodType.GetActions(System.Int32,TinyLife.Skills.FoodType.IngredientSource,System.Boolean,System.Single,TinyLife.Skills.SkillType)
2021-08-04 06:51:12 +02:00
- TinyLife.Skills.FoodType.GetAllContainers(System.Int32)
2022-06-09 20:12:10 +02:00
- TinyLife.Skills.FoodType.GetIntolerancesDescription(System.Boolean)
2021-08-04 06:51:12 +02:00
- TinyLife.Skills.FoodType.GetPrice(System.Int32)
2022-07-04 16:50:43 +02:00
- TinyLife.Skills.FoodType.GetTexture(System.Int32)
2022-06-09 20:12:10 +02:00
- TinyLife.Skills.FoodType.Intolerances
- TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem)
2021-08-04 06:51:12 +02:00
- TinyLife.Skills.FoodType.Name
- TinyLife.Skills.FoodType.OnEaten
2022-01-08 12:41:09 +01:00
- TinyLife.Skills.FoodType.OnFoodEaten
2021-08-04 06:51:12 +02:00
- TinyLife.Skills.FoodType.Price
- TinyLife.Skills.FoodType.Register(TinyLife.Skills.FoodType)
2022-07-04 16:50:43 +02:00
- TinyLife.Skills.FoodType.RequiredSkill
- TinyLife.Skills.FoodType.RequiredSkillLevel
2023-03-30 18:07:55 +02:00
- TinyLife.Skills.FoodType.SaturationModifier
2022-05-24 13:36:05 +02:00
- TinyLife.Skills.FoodType.Sources
2023-03-30 18:07:55 +02:00
- TinyLife.Skills.FoodType.SourceString
2021-08-04 06:51:12 +02:00
- TinyLife.Skills.FoodType.Types
langs :
- csharp
- vb
name : FoodType
nameWithType : FoodType
fullName : TinyLife.Skills.FoodType
type : Class
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : FoodType
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2022-09-17 12:33:21 +02:00
startLine : 31
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-09-05 14:19:42 +02:00
summary : "\nA food type is a type of dish that can be cooked using <xref href=\"TinyLife.Actions.ActionType.GetIngredientsSingle\" data-throw-if-not-resolved=\"false\"></xref>.\nFood types store information such as their name and texture, but also the cooking level that is required to make them.\nWhether a food type has a custom <xref href=\"Microsoft.Xna.Framework.Graphics.Texture\" data-throw-if-not-resolved=\"false\"></xref> is based on its <xref href=\"TinyLife.Skills.FoodType.ContainerType\" data-throw-if-not-resolved=\"false\"></xref>, but most foods use the <xref href=\"TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)\" data-throw-if-not-resolved=\"false\"></xref> and are loaded as as "Food<xref href=\"TinyLife.Skills.FoodType.Name\" data-throw-if-not-resolved=\"false\"></xref>".\nFood types are registered using <xref href=\"TinyLife.Skills.FoodType.Register(TinyLife.Skills.FoodType)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
2023-03-30 18:07:55 +02:00
[ JsonConverter(typeof(StaticJsonConverter<FoodType>), new object[] { typeof(FoodType), "PrivateTypes" })]
2021-08-04 06:51:12 +02:00
2023-03-30 18:07:55 +02:00
public class FoodType : IEmotionSource
2021-08-04 06:51:12 +02:00
content.vb : >-
2023-03-30 18:07:55 +02:00
<JsonConverter(GetType(StaticJsonConverter(Of FoodType)), New Object() { GetType(FoodType), "PrivateTypes" })>
2021-08-04 06:51:12 +02:00
2023-03-30 18:07:55 +02:00
Public Class FoodType Implements IEmotionSource
2021-08-04 06:51:12 +02:00
inheritance :
- System.Object
2023-03-30 18:07:55 +02:00
implements :
- TinyLife.Emotions.IEmotionSource
2021-08-04 06:51:12 +02:00
inheritedMembers :
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
extensionMethods :
- TinyLife.Skills.FoodType.TinyLife.Utilities.Extensions.JsonCopy``1
- uid : TinyLife.Skills.FoodType.Types
commentId : F:TinyLife.Skills.FoodType.Types
id : Types
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : Types
nameWithType : FoodType.Types
fullName : TinyLife.Skills.FoodType.Types
type : Field
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : Types
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2022-09-17 12:33:21 +02:00
startLine : 38
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
summary : "\nAll of the <xref href=\"TinyLife.Skills.FoodType\" data-throw-if-not-resolved=\"false\"></xref> instances that are registered by the game and mods\n"
example : [ ]
syntax :
2022-05-24 13:36:05 +02:00
content : public static readonly ReadOnlyDictionary<string, FoodType> Types
2021-08-04 06:51:12 +02:00
return :
2022-05-24 13:36:05 +02:00
type : System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Skills.FoodType}
content.vb : Public Shared ReadOnly Types As ReadOnlyDictionary(Of String, FoodType)
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.AllIntolerances
commentId : F:TinyLife.Skills.FoodType.AllIntolerances
id : AllIntolerances
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : AllIntolerances
nameWithType : FoodType.AllIntolerances
fullName : TinyLife.Skills.FoodType.AllIntolerances
type : Field
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-06-09 20:12:10 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : AllIntolerances
path : ../TinyLife/Skills/FoodType.cs
2022-09-17 12:33:21 +02:00
startLine : 42
2022-06-09 20:12:10 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-06-10 12:18:26 +02:00
summary : "\nAll of the defined <xref href=\"TinyLife.Skills.FoodType.FoodIntolerance\" data-throw-if-not-resolved=\"false\"></xref> flag values.\n"
example : [ ]
2022-06-09 20:12:10 +02:00
syntax :
content : public static readonly FoodType.FoodIntolerance[] AllIntolerances
return :
type : TinyLife.Skills.FoodType.FoodIntolerance[]
content.vb : Public Shared ReadOnly AllIntolerances As FoodType.FoodIntolerance()
2022-01-08 12:41:09 +01:00
- uid : TinyLife.Skills.FoodType.OnFoodEaten
commentId : E:TinyLife.Skills.FoodType.OnFoodEaten
id : OnFoodEaten
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : OnFoodEaten
nameWithType : FoodType.OnFoodEaten
fullName : TinyLife.Skills.FoodType.OnFoodEaten
type : Event
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-01-08 12:41:09 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : OnFoodEaten
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2022-09-17 12:33:21 +02:00
startLine : 51
2022-01-08 12:41:09 +01:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-11-12 13:53:28 +01:00
summary : "\nAn event that is invoked after a given <xref href=\"TinyLife.Skills.FoodType\" data-throw-if-not-resolved=\"false\"></xref>'s food type is eaten as part of the given <xref href=\"System.Action\" data-throw-if-not-resolved=\"false\"></xref>.\nThis event is invoked at the same time as <xref href=\"TinyLife.Skills.FoodType.OnEaten\" data-throw-if-not-resolved=\"false\"></xref>, but for any <xref href=\"TinyLife.Skills.FoodType\" data-throw-if-not-resolved=\"false\"></xref>.\nThis action is invoked in <xref href=\"TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action%2cTinyLife.Objects.FoodTypedItem)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
2022-03-09 16:13:05 +01:00
example : [ ]
2022-01-08 12:41:09 +01:00
syntax :
2022-06-09 20:12:10 +02:00
content : public static event Action<Action, FoodTypedItem, FoodType> OnFoodEaten
2022-01-08 12:41:09 +01:00
return :
2022-06-09 20:12:10 +02:00
type : System.Action{TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem,TinyLife.Skills.FoodType}
content.vb : Public Shared Event OnFoodEaten As Action(Of Action, FoodTypedItem, FoodType)
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.Name
commentId : F:TinyLife.Skills.FoodType.Name
id : Name
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : Name
nameWithType : FoodType.Name
fullName : TinyLife.Skills.FoodType.Name
type : Field
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : Name
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
startLine : 143
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
summary : "\nThis food type's name\n"
example : [ ]
syntax :
content : public readonly string Name
return :
type : System.String
content.vb : Public ReadOnly Name As String
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.RequiredSkillLevel
commentId : F:TinyLife.Skills.FoodType.RequiredSkillLevel
id : RequiredSkillLevel
2021-08-04 06:51:12 +02:00
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2022-07-04 16:50:43 +02:00
name : RequiredSkillLevel
nameWithType : FoodType.RequiredSkillLevel
fullName : TinyLife.Skills.FoodType.RequiredSkillLevel
2021-08-04 06:51:12 +02:00
type : Field
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2022-07-04 16:50:43 +02:00
id : RequiredSkillLevel
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
startLine : 147
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
summary : "\nThe level of the <xref href=\"TinyLife.Skills.SkillType.Cooking\" data-throw-if-not-resolved=\"false\"></xref> skill that is required to prepare this dish\n"
example : [ ]
syntax :
2022-07-04 16:50:43 +02:00
content : public readonly int RequiredSkillLevel
2021-08-04 06:51:12 +02:00
return :
type : System.Int32
2022-07-04 16:50:43 +02:00
content.vb : Public ReadOnly RequiredSkillLevel As Integer
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.Price
commentId : F:TinyLife.Skills.FoodType.Price
id : Price
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : Price
nameWithType : FoodType.Price
fullName : TinyLife.Skills.FoodType.Price
type : Field
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : Price
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
startLine : 151
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
summary : "\nThe price that creating this food type has\n"
example : [ ]
syntax :
content : public readonly int Price
return :
type : System.Int32
content.vb : Public ReadOnly Price As Integer
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Skills.FoodType.SaturationModifier
commentId : F:TinyLife.Skills.FoodType.SaturationModifier
id : SaturationModifier
2021-08-04 06:51:12 +02:00
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : SaturationModifier
nameWithType : FoodType.SaturationModifier
fullName : TinyLife.Skills.FoodType.SaturationModifier
2021-08-04 06:51:12 +02:00
type : Field
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2023-03-30 18:07:55 +02:00
id : SaturationModifier
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 155
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2023-04-26 14:51:19 +02:00
summary : "\nA factor that determines how saturating this food type should be based on the default saturation value. As a reference, Mac and Cheese has a factor of 1, whereas Fish and Chips has a factor of 1.5.\n"
example : [ ]
2021-08-04 06:51:12 +02:00
syntax :
2023-03-30 18:07:55 +02:00
content : public readonly float SaturationModifier
2021-08-04 06:51:12 +02:00
return :
2023-03-30 18:07:55 +02:00
type : System.Single
content.vb : Public ReadOnly SaturationModifier As Single
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Skills.FoodType.Color
commentId : F:TinyLife.Skills.FoodType.Color
id : Color
2021-08-04 06:51:12 +02:00
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2022-05-24 13:36:05 +02:00
name : Color
nameWithType : FoodType.Color
fullName : TinyLife.Skills.FoodType.Color
2021-08-04 06:51:12 +02:00
type : Field
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2022-05-24 13:36:05 +02:00
id : Color
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 159
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-05-24 13:36:05 +02:00
summary : "\nThe color that this food type should display with.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2022-05-24 13:36:05 +02:00
content : public readonly Color Color
2021-08-04 06:51:12 +02:00
return :
2022-09-05 14:19:42 +02:00
type : Microsoft.Xna.Framework.Color
2022-05-24 13:36:05 +02:00
content.vb : Public ReadOnly Color As Color
- uid : TinyLife.Skills.FoodType.Sources
commentId : F:TinyLife.Skills.FoodType.Sources
id : Sources
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : Sources
nameWithType : FoodType.Sources
fullName : TinyLife.Skills.FoodType.Sources
type : Field
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-05-24 13:36:05 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : Sources
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 163
2022-05-24 13:36:05 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
summary : "\nA set of <xref href=\"TinyLife.Skills.FoodType.IngredientSource\" data-throw-if-not-resolved=\"false\"></xref> objects that determine where this food type can be created.\n"
example : [ ]
syntax :
2022-06-09 20:12:10 +02:00
content : public readonly ISet<FoodType.IngredientSource> Sources
2022-05-24 13:36:05 +02:00
return :
2022-06-09 20:12:10 +02:00
type : System.Collections.Generic.ISet{TinyLife.Skills.FoodType.IngredientSource}
content.vb : Public ReadOnly Sources As ISet(Of FoodType.IngredientSource)
- uid : TinyLife.Skills.FoodType.Intolerances
commentId : F:TinyLife.Skills.FoodType.Intolerances
id : Intolerances
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : Intolerances
nameWithType : FoodType.Intolerances
fullName : TinyLife.Skills.FoodType.Intolerances
type : Field
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-06-09 20:12:10 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : Intolerances
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 167
2022-06-09 20:12:10 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-06-10 12:18:26 +02:00
summary : "\nA set of <xref href=\"TinyLife.Skills.FoodType.FoodIntolerance\" data-throw-if-not-resolved=\"false\"></xref> flags that determine what things this food item contains that people might be intolerant to.\n"
example : [ ]
2022-06-09 20:12:10 +02:00
syntax :
content : public readonly FoodType.FoodIntolerance Intolerances
return :
type : TinyLife.Skills.FoodType.FoodIntolerance
content.vb : Public ReadOnly Intolerances As FoodType.FoodIntolerance
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.RequiredSkill
commentId : P:TinyLife.Skills.FoodType.RequiredSkill
id : RequiredSkill
2021-08-04 06:51:12 +02:00
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2022-07-04 16:50:43 +02:00
name : RequiredSkill
nameWithType : FoodType.RequiredSkill
fullName : TinyLife.Skills.FoodType.RequiredSkill
2021-08-04 06:51:12 +02:00
type : Property
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2022-07-04 16:50:43 +02:00
id : RequiredSkill
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 173
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-07-04 16:50:43 +02:00
summary : "\nThe <xref href=\"TinyLife.Skills.SkillType\" data-throw-if-not-resolved=\"false\"></xref> required for this food type, which is linked to the <xref href=\"TinyLife.Skills.FoodType.RequiredSkillLevel\" data-throw-if-not-resolved=\"false\"></xref>.\nThis value defaults to the <xref href=\"TinyLife.Skills.SkillType.Cooking\" data-throw-if-not-resolved=\"false\"></xref> skill.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public SkillType RequiredSkill { get; init; }
2021-08-04 06:51:12 +02:00
parameters : [ ]
return :
2022-07-04 16:50:43 +02:00
type : TinyLife.Skills.SkillType
content.vb : Public Property RequiredSkill As SkillType
overload : TinyLife.Skills.FoodType.RequiredSkill*
- uid : TinyLife.Skills.FoodType.AdditionalObject
commentId : P:TinyLife.Skills.FoodType.AdditionalObject
id : AdditionalObject
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : AdditionalObject
nameWithType : FoodType.AdditionalObject
fullName : TinyLife.Skills.FoodType.AdditionalObject
type : Property
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-07-04 16:50:43 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : AdditionalObject
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 179
2022-07-04 16:50:43 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
summary : "\nAn object category that dictates an additional object that is required for this food type to be created.\nFor default actions, the categories <xref href=\"TinyLife.Objects.ObjectCategory.Stove\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Objects.ObjectCategory.Oven\" data-throw-if-not-resolved=\"false\"></xref> are supported.\nIf this is not set, a <xref href=\"TinyLife.Skills.FoodType.IngredientSource.Fridge\" data-throw-if-not-resolved=\"false\"></xref> food will not be cooked or baked.\n"
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public ObjectCategory AdditionalObject { get; init; }
2022-07-04 16:50:43 +02:00
parameters : [ ]
return :
type : TinyLife.Objects.ObjectCategory
content.vb : Public Property AdditionalObject As ObjectCategory
overload : TinyLife.Skills.FoodType.AdditionalObject*
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Skills.FoodType.Container
commentId : P:TinyLife.Skills.FoodType.Container
id : Container
2021-08-04 06:51:12 +02:00
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2022-05-24 13:36:05 +02:00
name : Container
nameWithType : FoodType.Container
fullName : TinyLife.Skills.FoodType.Container
2021-08-04 06:51:12 +02:00
type : Property
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2022-05-24 13:36:05 +02:00
id : Container
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 183
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-05-24 13:36:05 +02:00
summary : "\nThe <xref href=\"TinyLife.Skills.FoodType.ContainerType\" data-throw-if-not-resolved=\"false\"></xref> that this food type should be stored in.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public FoodType.ContainerType Container { get; init; }
2021-08-04 06:51:12 +02:00
parameters : [ ]
return :
2022-05-24 13:36:05 +02:00
type : TinyLife.Skills.FoodType.ContainerType
content.vb : Public Property Container As FoodType.ContainerType
overload : TinyLife.Skills.FoodType.Container*
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.OnEaten
commentId : P:TinyLife.Skills.FoodType.OnEaten
id : OnEaten
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : OnEaten
nameWithType : FoodType.OnEaten
fullName : TinyLife.Skills.FoodType.OnEaten
type : Property
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : OnEaten
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 189
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-11-12 13:53:28 +01:00
summary : "\nAn optional action that is invoked when this food object has been eaten.\nThis method is called if the underlying <xref href=\"System.Action\" data-throw-if-not-resolved=\"false\"></xref> is completed after a sufficient amount of time, so the food item has not necessarily been fully finished when this action is invoked.\nThis action is invoked in <xref href=\"TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action%2cTinyLife.Objects.FoodTypedItem)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public Action<Action, FoodTypedItem> OnEaten { get; init; }
2021-08-04 06:51:12 +02:00
parameters : [ ]
return :
2022-06-09 20:12:10 +02:00
type : System.Action{TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem}
content.vb : Public Property OnEaten As Action(Of Action, FoodTypedItem)
2021-08-04 06:51:12 +02:00
overload : TinyLife.Skills.FoodType.OnEaten*
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.CanEatFunc
commentId : P:TinyLife.Skills.FoodType.CanEatFunc
id : CanEatFunc
2021-08-04 06:51:12 +02:00
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2022-06-09 20:12:10 +02:00
name : CanEatFunc
nameWithType : FoodType.CanEatFunc
fullName : TinyLife.Skills.FoodType.CanEatFunc
2021-08-04 06:51:12 +02:00
type : Property
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2022-06-09 20:12:10 +02:00
id : CanEatFunc
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 194
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-06-10 12:18:26 +02:00
summary : "\nAn optional <xref href=\"TinyLife.Actions.ActionType.CanExecuteDelegate\" data-throw-if-not-resolved=\"false\"></xref>-style function that allows passing additional conditions to <xref href=\"TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person%2cTinyLife.Objects.FoodTypedItem%2cSystem.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>.\nIf this is null, which is also the default value, no additional checks are done in <xref href=\"TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person%2cTinyLife.Objects.FoodTypedItem%2cSystem.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public Func<(Person Person, FoodTypedItem Food, bool Automatic), CanExecuteResult> CanEatFunc { get; init; }
2021-08-04 06:51:12 +02:00
parameters : [ ]
return :
2022-06-09 20:12:10 +02:00
type : System.Func{System.ValueTuple{TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean},TinyLife.Actions.CanExecuteResult}
2023-03-30 18:07:55 +02:00
content.vb : Public Property CanEatFunc As Func(Of (Person As Person, Food As FoodTypedItem, Automatic As Boolean), CanExecuteResult)
2022-06-09 20:12:10 +02:00
overload : TinyLife.Skills.FoodType.CanEatFunc*
- uid : TinyLife.Skills.FoodType.CanCreateFunc
commentId : P:TinyLife.Skills.FoodType.CanCreateFunc
id : CanCreateFunc
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : CanCreateFunc
nameWithType : FoodType.CanCreateFunc
fullName : TinyLife.Skills.FoodType.CanCreateFunc
type : Property
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-06-09 20:12:10 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : CanCreateFunc
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 199
2022-06-09 20:12:10 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-06-10 12:18:26 +02:00
summary : "\nAn optional <xref href=\"TinyLife.Actions.ActionType.CanExecuteDelegate\" data-throw-if-not-resolved=\"false\"></xref>-style function that allows passing additional conditions to <xref href=\"TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo%2cSystem.Boolean%2cSystem.Int32%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref>.\nIf this is null, which is the default value, no additional checks are done in <xref href=\"TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo%2cSystem.Boolean%2cSystem.Int32%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example : [ ]
2022-06-09 20:12:10 +02:00
syntax :
2023-03-30 18:07:55 +02:00
content : public Func<(ActionInfo Info, bool Automatic, int ServingSize, float PriceMarkup), CanExecuteResult> CanCreateFunc { get; init; }
2022-06-09 20:12:10 +02:00
parameters : [ ]
return :
type : System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single},TinyLife.Actions.CanExecuteResult}
2023-03-30 18:07:55 +02:00
content.vb : Public Property CanCreateFunc As Func(Of (Info As ActionInfo, Automatic As Boolean, ServingSize As Integer, PriceMarkup As Single), CanExecuteResult)
2022-06-09 20:12:10 +02:00
overload : TinyLife.Skills.FoodType.CanCreateFunc*
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.CustomTextureFunc
commentId : P:TinyLife.Skills.FoodType.CustomTextureFunc
id : CustomTextureFunc
2021-08-04 06:51:12 +02:00
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2022-07-04 16:50:43 +02:00
name : CustomTextureFunc
nameWithType : FoodType.CustomTextureFunc
fullName : TinyLife.Skills.FoodType.CustomTextureFunc
2021-08-04 06:51:12 +02:00
type : Property
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2022-07-04 16:50:43 +02:00
id : CustomTextureFunc
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 203
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-07-04 16:50:43 +02:00
summary : "\nA function that can optionally return a custom texture to be used for the given serving size.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public Func<int, TextureRegion> CustomTextureFunc { get; init; }
2021-08-04 06:51:12 +02:00
parameters : [ ]
return :
2022-07-04 16:50:43 +02:00
type : System.Func{System.Int32,MLEM.Textures.TextureRegion}
content.vb : Public Property CustomTextureFunc As Func(Of Integer, TextureRegion)
overload : TinyLife.Skills.FoodType.CustomTextureFunc*
- uid : TinyLife.Skills.FoodType.CanHaveCandle
commentId : F:TinyLife.Skills.FoodType.CanHaveCandle
id : CanHaveCandle
2021-08-04 06:51:12 +02:00
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2022-07-04 16:50:43 +02:00
name : CanHaveCandle
nameWithType : FoodType.CanHaveCandle
fullName : TinyLife.Skills.FoodType.CanHaveCandle
type : Field
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-07-04 16:50:43 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : CanHaveCandle
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 207
2022-07-04 16:50:43 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
summary : "\nA function that returns whether the given instance of this <xref href=\"TinyLife.Skills.FoodType\" data-throw-if-not-resolved=\"false\"></xref> can have a candle added to it.\n"
example : [ ]
syntax :
content : public Func<Food, bool> CanHaveCandle
return :
type : System.Func{TinyLife.Objects.Food,System.Boolean}
content.vb : Public CanHaveCandle As Func(Of Food, Boolean)
- uid : TinyLife.Skills.FoodType.DisplayName
commentId : P:TinyLife.Skills.FoodType.DisplayName
id : DisplayName
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : DisplayName
nameWithType : FoodType.DisplayName
fullName : TinyLife.Skills.FoodType.DisplayName
2022-05-24 13:36:05 +02:00
type : Property
2021-08-04 06:51:12 +02:00
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2022-07-04 16:50:43 +02:00
id : DisplayName
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 211
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-07-04 16:50:43 +02:00
summary : "\nThis food type's <xref href=\"TinyLife.Skills.FoodType.Name\" data-throw-if-not-resolved=\"false\"></xref>, but localized using <xref href=\"TinyLife.LnCategory.Food\" data-throw-if-not-resolved=\"false\"></xref>\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2022-07-04 16:50:43 +02:00
content : public string DisplayName { get; }
2022-05-24 13:36:05 +02:00
parameters : [ ]
return :
2022-07-04 16:50:43 +02:00
type : System.String
content.vb : Public ReadOnly Property DisplayName As String
overload : TinyLife.Skills.FoodType.DisplayName*
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Skills.FoodType.SourceString
commentId : P:TinyLife.Skills.FoodType.SourceString
id : SourceString
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : SourceString
nameWithType : FoodType.SourceString
fullName : TinyLife.Skills.FoodType.SourceString
type : Property
source :
remote :
path : TinyLife/Skills/FoodType.cs
branch : main
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : SourceString
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 213
2023-03-30 18:07:55 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2023-04-26 14:51:19 +02:00
summary : "\nA (localized) string that is displayed when hovering over an <xref href=\"TinyLife.Emotions.EmotionModifier\" data-throw-if-not-resolved=\"false\"></xref> that has this source\n"
example : [ ]
2023-03-30 18:07:55 +02:00
syntax :
content : public string SourceString { get; }
parameters : [ ]
return :
type : System.String
content.vb : Public ReadOnly Property SourceString As String
overload : TinyLife.Skills.FoodType.SourceString*
implements :
- TinyLife.Emotions.IEmotionSource.SourceString
- uid : TinyLife.Skills.FoodType.#ctor(System.String,System.Int32,System.Int32,System.Single,TinyLife.Skills.FoodType.FoodIntolerance,TinyLife.Skills.FoodType.IngredientSource,System.Nullable{Microsoft.Xna.Framework.Color})
commentId : M:TinyLife.Skills.FoodType.#ctor(System.String,System.Int32,System.Int32,System.Single,TinyLife.Skills.FoodType.FoodIntolerance,TinyLife.Skills.FoodType.IngredientSource,System.Nullable{Microsoft.Xna.Framework.Color})
id : '#ctor(System.String,System.Int32,System.Int32,System.Single,TinyLife.Skills.FoodType.FoodIntolerance,TinyLife.Skills.FoodType.IngredientSource,System.Nullable{Microsoft.Xna.Framework.Color})'
2021-08-04 06:51:12 +02:00
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : FoodType(string, int, int, float, FoodIntolerance, IngredientSource, Color?)
nameWithType : FoodType.FoodType(string, int, int, float, FoodType.FoodIntolerance, FoodType.IngredientSource, Color?)
fullName : TinyLife.Skills.FoodType.FoodType(string, int, int, float, TinyLife.Skills.FoodType.FoodIntolerance, TinyLife.Skills.FoodType.IngredientSource, Microsoft.Xna.Framework.Color?)
2022-05-24 13:36:05 +02:00
type : Constructor
2021-08-04 06:51:12 +02:00
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2022-05-24 13:36:05 +02:00
id : .ctor
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 225
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-06-10 12:18:26 +02:00
summary : "\nCreates a new food type with the given settings.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public FoodType(string name, int requiredSkillLevel, int price, float saturationModifier, FoodType.FoodIntolerance intolerances, FoodType.IngredientSource source = null, Color? color = null)
2021-08-04 06:51:12 +02:00
parameters :
2022-05-24 13:36:05 +02:00
- id : name
type : System.String
2022-06-10 12:18:26 +02:00
description : The food type's name.
2022-07-04 16:50:43 +02:00
- id : requiredSkillLevel
2021-08-04 06:51:12 +02:00
type : System.Int32
2022-07-04 16:50:43 +02:00
description : The required skill level for the <xref href="TinyLife.Skills.FoodType.RequiredSkill" data-throw-if-not-resolved="false"></xref>.
2022-05-24 13:36:05 +02:00
- id : price
type : System.Int32
2022-06-10 12:18:26 +02:00
description : The price to prepare this food type.
2023-03-30 18:07:55 +02:00
- id : saturationModifier
type : System.Single
2023-04-26 14:51:19 +02:00
description : A factor that determines how saturating this food type should be based on the default saturation value. As a reference, Mac and Cheese has a factor of 1, whereas Fish and Chips has a factor of 1.5.
2022-06-09 20:12:10 +02:00
- id : intolerances
type : TinyLife.Skills.FoodType.FoodIntolerance
2022-06-10 12:18:26 +02:00
description : A set of <xref href="TinyLife.Skills.FoodType.FoodIntolerance" data-throw-if-not-resolved="false"></xref> flags that determine what things this food item contains that people might be intolerant to.
2022-05-24 13:36:05 +02:00
- id : source
type : TinyLife.Skills.FoodType.IngredientSource
2022-06-10 12:18:26 +02:00
description : The <xref href="TinyLife.Skills.FoodType.IngredientSource" data-throw-if-not-resolved="false"></xref> that this food type can be created in, defaults to <xref href="TinyLife.Skills.FoodType.IngredientSource.Fridge" data-throw-if-not-resolved="false"></xref>.
2022-05-24 13:36:05 +02:00
- id : color
2022-09-05 14:19:42 +02:00
type : System.Nullable{Microsoft.Xna.Framework.Color}
2023-03-30 18:07:55 +02:00
description : The color that this food type should display with, or <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a> to use <xref href="Microsoft.Xna.Framework.Color.White" data-throw-if-not-resolved="false"></xref>.
content.vb : Public Sub New(name As String, requiredSkillLevel As Integer, price As Integer, saturationModifier As Single, intolerances As FoodType.FoodIntolerance, source As FoodType.IngredientSource = Nothing, color As Color? = Nothing)
2022-05-24 13:36:05 +02:00
overload : TinyLife.Skills.FoodType.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : FoodType.New(String, Integer, Integer, Single, FoodType.FoodIntolerance, FoodType.IngredientSource, Color?)
fullName.vb : TinyLife.Skills.FoodType.New(String, Integer, Integer, Single, TinyLife.Skills.FoodType.FoodIntolerance, TinyLife.Skills.FoodType.IngredientSource, Microsoft.Xna.Framework.Color?)
name.vb : New(String, Integer, Integer, Single, FoodIntolerance, IngredientSource, Color?)
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.GetPrice(System.Int32)
commentId : M:TinyLife.Skills.FoodType.GetPrice(System.Int32)
id : GetPrice(System.Int32)
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : GetPrice(int)
nameWithType : FoodType.GetPrice(int)
fullName : TinyLife.Skills.FoodType.GetPrice(int)
2021-08-04 06:51:12 +02:00
type : Method
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : GetPrice
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 241
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
summary : "\nReturns the price of this food type, based on the amount of servings provided\n"
example : [ ]
syntax :
content : public float GetPrice(int servingSize)
parameters :
- id : servingSize
type : System.Int32
description : The amount of servings to get the price for
return :
type : System.Single
description : The price for this food type
content.vb : Public Function GetPrice(servingSize As Integer) As Single
overload : TinyLife.Skills.FoodType.GetPrice*
2023-03-30 18:07:55 +02:00
nameWithType.vb : FoodType.GetPrice(Integer)
fullName.vb : TinyLife.Skills.FoodType.GetPrice(Integer)
name.vb : GetPrice(Integer)
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Skills.FoodType.Construct(TinyLife.World.Map,TinyLife.Skills.Quality,System.TimeSpan,System.Int32,TinyLife.Objects.Person,System.Nullable{System.Guid},System.Boolean)
commentId : M:TinyLife.Skills.FoodType.Construct(TinyLife.World.Map,TinyLife.Skills.Quality,System.TimeSpan,System.Int32,TinyLife.Objects.Person,System.Nullable{System.Guid},System.Boolean)
id : Construct(TinyLife.World.Map,TinyLife.Skills.Quality,System.TimeSpan,System.Int32,TinyLife.Objects.Person,System.Nullable{System.Guid},System.Boolean)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Construct(Map, Quality, TimeSpan, int, Person, Guid?, bool)
nameWithType : FoodType.Construct(Map, Quality, TimeSpan, int, Person, Guid?, bool)
fullName : TinyLife.Skills.FoodType.Construct(TinyLife.World.Map, TinyLife.Skills.Quality, System.TimeSpan, int, TinyLife.Objects.Person, System.Guid?, bool)
2021-08-04 06:51:12 +02:00
type : Method
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : Construct
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 257
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2023-03-30 18:07:55 +02:00
summary : "\nConstructs a new <xref href=\"TinyLife.Objects.Food\" data-throw-if-not-resolved=\"false\"></xref> furniture instance based on this food type's <xref href=\"TinyLife.Skills.FoodType.ContainerType\" data-throw-if-not-resolved=\"false\"></xref>.\nNote that the returned item won't be added to the <code data-dev-comment-type=\"paramref\" class=\"paramref\">map</code> automatically.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2022-04-27 12:59:12 +02:00
content : public Food Construct(Map map, Quality quality, TimeSpan expirationTime, int servingSize, Person creator = null, Guid? id = null, bool triggerGoals = true)
2021-08-04 06:51:12 +02:00
parameters :
- id : map
type : TinyLife.World.Map
description : The map
- id : quality
type : TinyLife.Skills.Quality
description : The quality that the food should have, which also affects the <xref href="TinyLife.Objects.Food.FoodLeft" data-throw-if-not-resolved="false"></xref>
- id : expirationTime
type : System.TimeSpan
2022-07-28 14:58:38 +02:00
description : The in-game time that the resulting food should expire at. This should be based on <xref href="TinyLife.World.Map.Time" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
- id : servingSize
type : System.Int32
description : The serving size
- id : creator
2021-10-14 20:30:40 +02:00
type : TinyLife.Objects.Person
2021-08-04 06:51:12 +02:00
description : An optional id of a <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref> that created this food item
- id : id
type : System.Nullable{System.Guid}
description : An optional id to give to the <xref href="TinyLife.Objects.Food" data-throw-if-not-resolved="false"></xref> instance returned
2021-10-14 20:30:40 +02:00
- id : triggerGoals
type : System.Boolean
description : Whether <xref href="TinyLife.Goals.AutoGoalInfo" data-throw-if-not-resolved="false"></xref> goals should be triggered in <xref href="TinyLife.Objects.Furniture.SetCreator(TinyLife.Objects.Person%2cSystem.Boolean)" data-throw-if-not-resolved="false"></xref>
2021-08-04 06:51:12 +02:00
return :
type : TinyLife.Objects.Food
description : A new food instance with the given settings
2021-10-14 20:30:40 +02:00
content.vb : Public Function Construct(map As Map, quality As Quality, expirationTime As TimeSpan, servingSize As Integer, creator As Person = Nothing, id As Guid? = Nothing, triggerGoals As Boolean = True) As Food
2021-08-04 06:51:12 +02:00
overload : TinyLife.Skills.FoodType.Construct*
2023-03-30 18:07:55 +02:00
nameWithType.vb : FoodType.Construct(Map, Quality, TimeSpan, Integer, Person, Guid?, Boolean)
fullName.vb : TinyLife.Skills.FoodType.Construct(TinyLife.World.Map, TinyLife.Skills.Quality, System.TimeSpan, Integer, TinyLife.Objects.Person, System.Guid?, Boolean)
name.vb : Construct(Map, Quality, TimeSpan, Integer, Person, Guid?, Boolean)
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Skills.FoodType.ConstructUnfinished(TinyLife.Objects.FurnitureType,TinyLife.World.Map,System.TimeSpan,System.Int32,TinyLife.Objects.Person,System.Nullable{System.Guid},System.Boolean)
commentId : M:TinyLife.Skills.FoodType.ConstructUnfinished(TinyLife.Objects.FurnitureType,TinyLife.World.Map,System.TimeSpan,System.Int32,TinyLife.Objects.Person,System.Nullable{System.Guid},System.Boolean)
id : ConstructUnfinished(TinyLife.Objects.FurnitureType,TinyLife.World.Map,System.TimeSpan,System.Int32,TinyLife.Objects.Person,System.Nullable{System.Guid},System.Boolean)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : ConstructUnfinished(FurnitureType, Map, TimeSpan, int, Person, Guid?, bool)
nameWithType : FoodType.ConstructUnfinished(FurnitureType, Map, TimeSpan, int, Person, Guid?, bool)
fullName : TinyLife.Skills.FoodType.ConstructUnfinished(TinyLife.Objects.FurnitureType, TinyLife.World.Map, System.TimeSpan, int, TinyLife.Objects.Person, System.Guid?, bool)
2021-08-04 06:51:12 +02:00
type : Method
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : ConstructUnfinished
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 277
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2023-03-30 18:07:55 +02:00
summary : "\nConstructs a new <xref href=\"TinyLife.Objects.FoodTypedItem\" data-throw-if-not-resolved=\"false\"></xref> furniture instance based on the passed <xref href=\"TinyLife.Objects.FurnitureType\" data-throw-if-not-resolved=\"false\"></xref>\nNote that the returned item won't be added to the <code data-dev-comment-type=\"paramref\" class=\"paramref\">map</code> automatically.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2022-04-27 12:59:12 +02:00
content : public FoodTypedItem ConstructUnfinished(FurnitureType container, Map map, TimeSpan expirationTime, int servingSize, Person creator = null, Guid? id = null, bool triggerGoals = false)
2021-08-04 06:51:12 +02:00
parameters :
- id : container
type : TinyLife.Objects.FurnitureType
description : The <xref href="TinyLife.Objects.FurnitureType" data-throw-if-not-resolved="false"></xref> that an instance of should be returned, has to construct a <xref href="TinyLife.Objects.FoodTypedItem" data-throw-if-not-resolved="false"></xref>
- id : map
type : TinyLife.World.Map
description : The map
- id : expirationTime
type : System.TimeSpan
2022-07-28 14:58:38 +02:00
description : The in-game time that the resulting food should expire at. This should be based on <xref href="TinyLife.World.Map.Time" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
- id : servingSize
type : System.Int32
description : The serving size
- id : creator
2021-10-14 20:30:40 +02:00
type : TinyLife.Objects.Person
description : An optional <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref> that created this food item
2021-08-04 06:51:12 +02:00
- id : id
type : System.Nullable{System.Guid}
description : An optional id to give to the <xref href="TinyLife.Objects.Food" data-throw-if-not-resolved="false"></xref> instance returned
2021-10-14 20:30:40 +02:00
- id : triggerGoals
type : System.Boolean
description : Whether <xref href="TinyLife.Goals.AutoGoalInfo" data-throw-if-not-resolved="false"></xref> goals should be triggered in <xref href="TinyLife.Objects.Furniture.SetCreator(TinyLife.Objects.Person%2cSystem.Boolean)" data-throw-if-not-resolved="false"></xref>
2021-08-04 06:51:12 +02:00
return :
type : TinyLife.Objects.FoodTypedItem
description : ''
2021-10-14 20:30:40 +02:00
content.vb : Public Function ConstructUnfinished(container As FurnitureType, map As Map, expirationTime As TimeSpan, servingSize As Integer, creator As Person = Nothing, id As Guid? = Nothing, triggerGoals As Boolean = False) As FoodTypedItem
2021-08-04 06:51:12 +02:00
overload : TinyLife.Skills.FoodType.ConstructUnfinished*
2023-03-30 18:07:55 +02:00
nameWithType.vb : FoodType.ConstructUnfinished(FurnitureType, Map, TimeSpan, Integer, Person, Guid?, Boolean)
fullName.vb : TinyLife.Skills.FoodType.ConstructUnfinished(TinyLife.Objects.FurnitureType, TinyLife.World.Map, System.TimeSpan, Integer, TinyLife.Objects.Person, System.Guid?, Boolean)
name.vb : ConstructUnfinished(FurnitureType, Map, TimeSpan, Integer, Person, Guid?, Boolean)
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean)
commentId : M:TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean)
id : CanEat(TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean)
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : CanEat(Person, FoodTypedItem, bool)
nameWithType : FoodType.CanEat(Person, FoodTypedItem, bool)
fullName : TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person, TinyLife.Objects.FoodTypedItem, bool)
2022-06-09 20:12:10 +02:00
type : Method
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-06-09 20:12:10 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : CanEat
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 294
2022-06-09 20:12:10 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-06-10 12:18:26 +02:00
summary : "\nReturns a <xref href=\"TinyLife.Actions.CanExecuteResult\" data-throw-if-not-resolved=\"false\"></xref> indicating whether a <xref href=\"TinyLife.Objects.FoodTypedItem\" data-throw-if-not-resolved=\"false\"></xref> that has this food type can currently be eaten.\nThis method also invokes <xref href=\"TinyLife.Skills.FoodType.CanEatFunc\" data-throw-if-not-resolved=\"false\"></xref> and checks for matching <xref href=\"TinyLife.Skills.FoodType.Intolerances\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example : [ ]
2022-06-09 20:12:10 +02:00
syntax :
content : public CanExecuteResult CanEat(Person person, FoodTypedItem food, bool automatic)
parameters :
- id : person
type : TinyLife.Objects.Person
2022-06-10 12:18:26 +02:00
description : The person trying to eat this food item.
2022-06-09 20:12:10 +02:00
- id : food
type : TinyLife.Objects.FoodTypedItem
2022-06-10 12:18:26 +02:00
description : The food item.
2022-06-09 20:12:10 +02:00
- id : automatic
type : System.Boolean
2022-06-10 12:18:26 +02:00
description : Whether the action is invoked automatically.
2022-06-09 20:12:10 +02:00
return :
type : TinyLife.Actions.CanExecuteResult
2022-06-10 12:18:26 +02:00
description : A <xref href="TinyLife.Actions.CanExecuteResult" data-throw-if-not-resolved="false"></xref> indicating whether this food item can be eaten.
2022-06-09 20:12:10 +02:00
content.vb : Public Function CanEat(person As Person, food As FoodTypedItem, automatic As Boolean) As CanExecuteResult
overload : TinyLife.Skills.FoodType.CanEat*
2023-03-30 18:07:55 +02:00
nameWithType.vb : FoodType.CanEat(Person, FoodTypedItem, Boolean)
fullName.vb : TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person, TinyLife.Objects.FoodTypedItem, Boolean)
name.vb : CanEat(Person, FoodTypedItem, Boolean)
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single)
commentId : M:TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single)
id : CanCreate(TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single)
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : CanCreate(ActionInfo, bool, int, float)
nameWithType : FoodType.CanCreate(ActionInfo, bool, int, float)
fullName : TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo, bool, int, float)
2022-06-09 20:12:10 +02:00
type : Method
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-06-09 20:12:10 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : CanCreate
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 315
2022-06-09 20:12:10 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-07-04 16:50:43 +02:00
summary : "\nReturns a <xref href=\"TinyLife.Actions.CanExecuteResult\" data-throw-if-not-resolved=\"false\"></xref> indicating whether an item with this food type can be created in some way.\nThis method also invokes <xref href=\"TinyLife.Skills.FoodType.CanCreateFunc\" data-throw-if-not-resolved=\"false\"></xref>, checks against the <xref href=\"TinyLife.Skills.FoodType.Price\" data-throw-if-not-resolved=\"false\"></xref> and checks for an object with the <xref href=\"TinyLife.Skills.FoodType.AdditionalObject\" data-throw-if-not-resolved=\"false\"></xref> category.\n"
2022-06-10 12:18:26 +02:00
example : [ ]
2022-06-09 20:12:10 +02:00
syntax :
content : public CanExecuteResult CanCreate(ActionInfo info, bool automatic, int servingSize, float priceMarkup)
parameters :
- id : info
type : TinyLife.Actions.ActionInfo
2022-06-10 12:18:26 +02:00
description : The action info.
2022-06-09 20:12:10 +02:00
- id : automatic
type : System.Boolean
2022-06-10 12:18:26 +02:00
description : Whether the action is invoked automatically.
2022-06-09 20:12:10 +02:00
- id : servingSize
type : System.Int32
2022-06-10 12:18:26 +02:00
description : The serving size that is being created.
2022-06-09 20:12:10 +02:00
- id : priceMarkup
type : System.Single
2022-06-10 12:18:26 +02:00
description : A price markup that the <xref href="TinyLife.Skills.FoodType.Price" data-throw-if-not-resolved="false"></xref> should be multiplied with.
2022-06-09 20:12:10 +02:00
return :
type : TinyLife.Actions.CanExecuteResult
2022-06-10 12:18:26 +02:00
description : A <xref href="TinyLife.Actions.CanExecuteResult" data-throw-if-not-resolved="false"></xref> indicating whether this food item can be created.
2022-06-09 20:12:10 +02:00
content.vb : Public Function CanCreate(info As ActionInfo, automatic As Boolean, servingSize As Integer, priceMarkup As Single) As CanExecuteResult
overload : TinyLife.Skills.FoodType.CanCreate*
2023-03-30 18:07:55 +02:00
nameWithType.vb : FoodType.CanCreate(ActionInfo, Boolean, Integer, Single)
fullName.vb : TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo, Boolean, Integer, Single)
name.vb : CanCreate(ActionInfo, Boolean, Integer, Single)
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.GetIntolerancesDescription(System.Boolean)
commentId : M:TinyLife.Skills.FoodType.GetIntolerancesDescription(System.Boolean)
id : GetIntolerancesDescription(System.Boolean)
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : GetIntolerancesDescription(bool)
nameWithType : FoodType.GetIntolerancesDescription(bool)
fullName : TinyLife.Skills.FoodType.GetIntolerancesDescription(bool)
2022-06-09 20:12:10 +02:00
type : Method
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-06-09 20:12:10 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : GetIntolerancesDescription
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 337
2022-06-09 20:12:10 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-06-10 12:18:26 +02:00
summary : "\nReturns a set of strings that describe this food item's <xref href=\"TinyLife.Skills.FoodType.Intolerances\" data-throw-if-not-resolved=\"false\"></xref>.\nIf this item has no intolerances, no strings are returned.\n"
example : [ ]
2022-06-09 20:12:10 +02:00
syntax :
content : public IEnumerable<string> GetIntolerancesDescription(bool includeIcon = true)
parameters :
- id : includeIcon
type : System.Boolean
2022-06-10 12:18:26 +02:00
description : Whether the intolerances' icons should be included.
2022-06-09 20:12:10 +02:00
return :
type : System.Collections.Generic.IEnumerable{System.String}
2022-06-10 12:18:26 +02:00
description : A set of strings that describe this food item's <xref href="TinyLife.Skills.FoodType.Intolerances" data-throw-if-not-resolved="false"></xref>.
2022-06-09 20:12:10 +02:00
content.vb : Public Function GetIntolerancesDescription(includeIcon As Boolean = True) As IEnumerable(Of String)
overload : TinyLife.Skills.FoodType.GetIntolerancesDescription*
2023-03-30 18:07:55 +02:00
nameWithType.vb : FoodType.GetIntolerancesDescription(Boolean)
fullName.vb : TinyLife.Skills.FoodType.GetIntolerancesDescription(Boolean)
name.vb : GetIntolerancesDescription(Boolean)
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem)
commentId : M:TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem)
id : InvokeOnEaten(TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem)
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : InvokeOnEaten(Action, FoodTypedItem)
nameWithType : FoodType.InvokeOnEaten(Action, FoodTypedItem)
fullName : TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action, TinyLife.Objects.FoodTypedItem)
type : Method
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-06-09 20:12:10 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : InvokeOnEaten
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 352
2022-06-09 20:12:10 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-10-18 13:03:11 +02:00
summary : "\nInvokes this food type's <xref href=\"TinyLife.Skills.FoodType.OnEaten\" data-throw-if-not-resolved=\"false\"></xref> event, as well as this <xref href=\"TinyLife.Skills.FoodType.Sources\" data-throw-if-not-resolved=\"false\"></xref>' <xref href=\"TinyLife.Skills.FoodType.IngredientSource.OnEaten\" data-throw-if-not-resolved=\"false\"></xref> events.\nThis method should be called when a significant amount of this item is consumed, but is automatically called in <xref href=\"TinyLife.Actions.ActionType.Eat\" data-throw-if-not-resolved=\"false\"></xref>.\n"
2022-06-10 12:18:26 +02:00
example : [ ]
2022-06-09 20:12:10 +02:00
syntax :
content : public void InvokeOnEaten(Action action, FoodTypedItem food)
parameters :
- id : action
type : TinyLife.Actions.Action
2022-06-10 12:18:26 +02:00
description : The eat action.
2022-06-09 20:12:10 +02:00
- id : food
type : TinyLife.Objects.FoodTypedItem
2022-06-10 12:18:26 +02:00
description : The food item being eaten.
2022-06-09 20:12:10 +02:00
content.vb : Public Sub InvokeOnEaten(action As Action, food As FoodTypedItem)
overload : TinyLife.Skills.FoodType.InvokeOnEaten*
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.GetTexture(System.Int32)
commentId : M:TinyLife.Skills.FoodType.GetTexture(System.Int32)
id : GetTexture(System.Int32)
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : GetTexture(int)
nameWithType : FoodType.GetTexture(int)
fullName : TinyLife.Skills.FoodType.GetTexture(int)
2022-07-04 16:50:43 +02:00
type : Method
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-07-04 16:50:43 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : GetTexture
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 378
2022-07-04 16:50:43 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
summary : "\nReturns the texture region that should be drawn for the given serving size.\nThis method invokes the <xref href=\"TinyLife.Skills.FoodType.CustomTextureFunc\" data-throw-if-not-resolved=\"false\"></xref> and, by default, returns <xref href=\"TinyLife.Skills.FoodType.ContainerType.GetDefaultTexture(TinyLife.Skills.FoodType)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example : [ ]
syntax :
content : public TextureRegion GetTexture(int servingSize)
parameters :
- id : servingSize
type : System.Int32
description : The serving size to return a texture region for.
return :
type : MLEM.Textures.TextureRegion
description : The texture region to draw.
content.vb : Public Function GetTexture(servingSize As Integer) As TextureRegion
overload : TinyLife.Skills.FoodType.GetTexture*
2023-03-30 18:07:55 +02:00
nameWithType.vb : FoodType.GetTexture(Integer)
fullName.vb : TinyLife.Skills.FoodType.GetTexture(Integer)
name.vb : GetTexture(Integer)
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.Register(TinyLife.Skills.FoodType)
commentId : M:TinyLife.Skills.FoodType.Register(TinyLife.Skills.FoodType)
id : Register(TinyLife.Skills.FoodType)
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
name : Register(FoodType)
nameWithType : FoodType.Register(FoodType)
fullName : TinyLife.Skills.FoodType.Register(TinyLife.Skills.FoodType)
type : Method
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : Register
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 386
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
summary : "\nRegisters a new <xref href=\"TinyLife.Skills.FoodType\" data-throw-if-not-resolved=\"false\"></xref> with the given settings\n"
example : [ ]
syntax :
content : public static void Register(FoodType type)
parameters :
- id : type
type : TinyLife.Skills.FoodType
description : The food type to register
content.vb : Public Shared Sub Register(type As FoodType)
overload : TinyLife.Skills.FoodType.Register*
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.GetActions(System.Int32,TinyLife.Skills.FoodType.IngredientSource,System.Boolean,System.Single,TinyLife.Skills.SkillType)
commentId : M:TinyLife.Skills.FoodType.GetActions(System.Int32,TinyLife.Skills.FoodType.IngredientSource,System.Boolean,System.Single,TinyLife.Skills.SkillType)
id : GetActions(System.Int32,TinyLife.Skills.FoodType.IngredientSource,System.Boolean,System.Single,TinyLife.Skills.SkillType)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : GetActions(int, IngredientSource, bool, float, SkillType)
nameWithType : FoodType.GetActions(int, FoodType.IngredientSource, bool, float, SkillType)
fullName : TinyLife.Skills.FoodType.GetActions(int, TinyLife.Skills.FoodType.IngredientSource, bool, float, TinyLife.Skills.SkillType)
2021-08-04 06:51:12 +02:00
type : Method
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : GetActions
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 400
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
summary : "\nReturns a set of action varieties for all <xref href=\"TinyLife.Skills.FoodType\" data-throw-if-not-resolved=\"false\"></xref> objects that match the given predicate\n"
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public static IEnumerable<ActionVariety> GetActions(int servingSize, FoodType.IngredientSource source, bool checkConditions = true, float priceMarkup = 1, SkillType requiredSkill = null)
2021-08-04 06:51:12 +02:00
parameters :
- id : servingSize
type : System.Int32
description : The serving size that should be served when using the variety
- id : source
type : TinyLife.Skills.FoodType.IngredientSource
description : The ingredient source to return actions for
2022-05-24 13:36:05 +02:00
- id : checkConditions
type : System.Boolean
2022-07-04 16:50:43 +02:00
description : Whether additional conditions like <xref href="TinyLife.Skills.FoodType.GetPrice(System.Int32)" data-throw-if-not-resolved="false"></xref> or the <xref href="TinyLife.Skills.FoodType.AdditionalObject" data-throw-if-not-resolved="false"></xref> should be checked.
2022-05-24 13:36:05 +02:00
- id : priceMarkup
type : System.Single
description : The amount that the <xref href="TinyLife.Skills.FoodType.GetPrice(System.Int32)" data-throw-if-not-resolved="false"></xref> should be multiplied by for display and condition checking.
2022-07-04 16:50:43 +02:00
- id : requiredSkill
type : TinyLife.Skills.SkillType
2023-03-30 18:07:55 +02:00
description : The required skill, or <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a> to use <xref href="TinyLife.Skills.SkillType.Cooking" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
return :
type : System.Collections.Generic.IEnumerable{TinyLife.Actions.ActionVariety}
description : A set of action varieties representing food types
2023-03-30 18:07:55 +02:00
content.vb : Public Shared Function GetActions(servingSize As Integer, source As FoodType.IngredientSource, checkConditions As Boolean = True, priceMarkup As Single = 1, requiredSkill As SkillType = Nothing) As IEnumerable(Of ActionVariety)
2021-08-04 06:51:12 +02:00
overload : TinyLife.Skills.FoodType.GetActions*
2023-03-30 18:07:55 +02:00
nameWithType.vb : FoodType.GetActions(Integer, FoodType.IngredientSource, Boolean, Single, SkillType)
fullName.vb : TinyLife.Skills.FoodType.GetActions(Integer, TinyLife.Skills.FoodType.IngredientSource, Boolean, Single, TinyLife.Skills.SkillType)
name.vb : GetActions(Integer, IngredientSource, Boolean, Single, SkillType)
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.GetAllContainers(System.Int32)
commentId : M:TinyLife.Skills.FoodType.GetAllContainers(System.Int32)
id : GetAllContainers(System.Int32)
parent : TinyLife.Skills.FoodType
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : GetAllContainers(int)
nameWithType : FoodType.GetAllContainers(int)
fullName : TinyLife.Skills.FoodType.GetAllContainers(int)
2021-08-04 06:51:12 +02:00
type : Method
source :
remote :
path : TinyLife/Skills/FoodType.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id : GetAllContainers
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Skills/FoodType.cs
2023-04-26 14:51:19 +02:00
startLine : 431
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Skills
2022-05-24 13:36:05 +02:00
summary : "\nReturns all of the <xref href=\"TinyLife.Skills.FoodType.ContainerType\" data-throw-if-not-resolved=\"false\"></xref> furniture types that any registered food types will be stored in, based on the serving size.\nThis method returns a distinct array of <xref href=\"TinyLife.Skills.FoodType.ContainerType\" data-throw-if-not-resolved=\"false\"></xref> instances of all <xref href=\"TinyLife.Skills.FoodType.Types\" data-throw-if-not-resolved=\"false\"></xref>.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : public static FurnitureType[] GetAllContainers(int servingSize)
parameters :
- id : servingSize
type : System.Int32
description : The serving size
return :
type : TinyLife.Objects.FurnitureType[]
description : All food containers for the given serving size
content.vb : Public Shared Function GetAllContainers(servingSize As Integer) As FurnitureType()
overload : TinyLife.Skills.FoodType.GetAllContainers*
2023-03-30 18:07:55 +02:00
nameWithType.vb : FoodType.GetAllContainers(Integer)
fullName.vb : TinyLife.Skills.FoodType.GetAllContainers(Integer)
name.vb : GetAllContainers(Integer)
2021-08-04 06:51:12 +02:00
references :
- uid : TinyLife.Actions.ActionType.GetIngredientsSingle
commentId : F:TinyLife.Actions.ActionType.GetIngredientsSingle
2023-03-30 18:07:55 +02:00
name : GetIngredientsSingle
nameWithType : ActionType.GetIngredientsSingle
fullName : TinyLife.Actions.ActionType.GetIngredientsSingle
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Graphics.Texture
commentId : T:Microsoft.Xna.Framework.Graphics.Texture
isExternal : true
2023-03-30 18:07:55 +02:00
name : Texture
nameWithType : Texture
fullName : Microsoft.Xna.Framework.Graphics.Texture
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Skills.FoodType.ContainerType
commentId : T:TinyLife.Skills.FoodType.ContainerType
parent : TinyLife.Skills
name : FoodType.ContainerType
nameWithType : FoodType.ContainerType
fullName : TinyLife.Skills.FoodType.ContainerType
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : .
- uid : TinyLife.Skills.FoodType.ContainerType
name : ContainerType
spec.vb :
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : .
- uid : TinyLife.Skills.FoodType.ContainerType
name : ContainerType
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
commentId : M:TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
2023-03-30 18:07:55 +02:00
name : GetCustomFurnitureTextures(ModInfo)
nameWithType : Mod.GetCustomFurnitureTextures(ModInfo)
fullName : TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
spec.csharp :
- uid : TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
name : GetCustomFurnitureTextures
- name : (
- uid : TinyLife.Mods.ModInfo
name : ModInfo
- name : )
spec.vb :
- uid : TinyLife.Mods.Mod.GetCustomFurnitureTextures(TinyLife.Mods.ModInfo)
name : GetCustomFurnitureTextures
- name : (
- uid : TinyLife.Mods.ModInfo
name : ModInfo
- name : )
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Skills.FoodType.Name
commentId : F:TinyLife.Skills.FoodType.Name
2023-03-30 18:07:55 +02:00
name : Name
nameWithType : FoodType.Name
fullName : TinyLife.Skills.FoodType.Name
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.Register(TinyLife.Skills.FoodType)
commentId : M:TinyLife.Skills.FoodType.Register(TinyLife.Skills.FoodType)
2023-03-30 18:07:55 +02:00
name : Register(FoodType)
nameWithType : FoodType.Register(FoodType)
fullName : TinyLife.Skills.FoodType.Register(TinyLife.Skills.FoodType)
spec.csharp :
- uid : TinyLife.Skills.FoodType.Register(TinyLife.Skills.FoodType)
name : Register
- name : (
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : )
spec.vb :
- uid : TinyLife.Skills.FoodType.Register(TinyLife.Skills.FoodType)
name : Register
- name : (
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills
commentId : N : TinyLife.Skills
name : TinyLife.Skills
nameWithType : TinyLife.Skills
fullName : TinyLife.Skills
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Skills
name : Skills
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Skills
name : Skills
2021-08-04 06:51:12 +02:00
- uid : System.Object
commentId : T:System.Object
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
name : object
nameWithType : object
fullName : object
nameWithType.vb : Object
fullName.vb : Object
name.vb : Object
- uid : TinyLife.Emotions.IEmotionSource
commentId : T:TinyLife.Emotions.IEmotionSource
parent : TinyLife.Emotions
name : IEmotionSource
nameWithType : IEmotionSource
fullName : TinyLife.Emotions.IEmotionSource
2021-08-04 06:51:12 +02:00
- uid : System.Object.Equals(System.Object)
commentId : M:System.Object.Equals(System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name : Equals(object)
nameWithType : object.Equals(object)
fullName : object.Equals(object)
nameWithType.vb : Object.Equals(Object)
fullName.vb : Object.Equals(Object)
name.vb : Equals(Object)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Object.Equals(System.Object,System.Object)
commentId : M:System.Object.Equals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name : Equals(object, object)
nameWithType : object.Equals(object, object)
fullName : object.Equals(object, object)
nameWithType.vb : Object.Equals(Object, Object)
fullName.vb : Object.Equals(Object, Object)
name.vb : Equals(Object, Object)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Object.GetHashCode
commentId : M:System.Object.GetHashCode
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
name : GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetHashCode()
fullName : object.GetHashCode()
nameWithType.vb : Object.GetHashCode()
fullName.vb : Object.GetHashCode()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : System.Object.GetType
commentId : M:System.Object.GetType
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
name : GetType()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetType()
fullName : object.GetType()
nameWithType.vb : Object.GetType()
fullName.vb : Object.GetType()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
name : MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType : object.MemberwiseClone()
fullName : object.MemberwiseClone()
nameWithType.vb : Object.MemberwiseClone()
fullName.vb : Object.MemberwiseClone()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
commentId : M:System.Object.ReferenceEquals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name : ReferenceEquals(object, object)
nameWithType : object.ReferenceEquals(object, object)
fullName : object.ReferenceEquals(object, object)
nameWithType.vb : Object.ReferenceEquals(Object, Object)
fullName.vb : Object.ReferenceEquals(Object, Object)
name.vb : ReferenceEquals(Object, Object)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Object.ToString
commentId : M:System.Object.ToString
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
name : ToString()
2023-03-30 18:07:55 +02:00
nameWithType : object.ToString()
fullName : object.ToString()
nameWithType.vb : Object.ToString()
fullName.vb : Object.ToString()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : TinyLife.Skills.FoodType.TinyLife.Utilities.Extensions.JsonCopy``1
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent : TinyLife.Utilities.Extensions
definition : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy<FoodType>(FoodType)
nameWithType : Extensions.JsonCopy<FoodType>(FoodType)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Skills.FoodType>(TinyLife.Skills.FoodType)
nameWithType.vb : Extensions.JsonCopy(Of FoodType)(FoodType)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Skills.FoodType)(TinyLife.Skills.FoodType)
name.vb : JsonCopy(Of FoodType)(FoodType)
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Skills.FoodType)
name : JsonCopy
- name : <
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Skills.FoodType
name : FoodType
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Skills.FoodType)
name : JsonCopy
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : )
- name : (
- uid : TinyLife.Skills.FoodType
name : FoodType
2021-08-04 06:51:12 +02:00
- name : )
- uid : System
commentId : N : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2021-08-04 06:51:12 +02:00
name : System
nameWithType : System
fullName : System
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Emotions
commentId : N : TinyLife.Emotions
name : TinyLife.Emotions
nameWithType : TinyLife.Emotions
fullName : TinyLife.Emotions
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Emotions
name : Emotions
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Emotions
name : Emotions
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name : JsonCopy<T>(T)
nameWithType : Extensions.JsonCopy<T>(T)
fullName : TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb : Extensions.JsonCopy(Of T)(T)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb : JsonCopy(Of T)(T)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
- name : <
- name : T
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
- name : T
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
- name : (
- name : Of
- name : " "
- name : T
- name : )
2021-08-04 06:51:12 +02:00
- name : (
- name : T
- name : )
- uid : TinyLife.Utilities.Extensions
commentId : T:TinyLife.Utilities.Extensions
parent : TinyLife.Utilities
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Utilities
name : Utilities
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Utilities
name : Utilities
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType
commentId : T:TinyLife.Skills.FoodType
parent : TinyLife.Skills
name : FoodType
nameWithType : FoodType
fullName : TinyLife.Skills.FoodType
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Skills.FoodType}
commentId : T:System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Skills.FoodType}
parent : System.Collections.ObjectModel
definition : System.Collections.ObjectModel.ReadOnlyDictionary`2
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
name : ReadOnlyDictionary<string, FoodType>
nameWithType : ReadOnlyDictionary<string, FoodType>
fullName : System.Collections.ObjectModel.ReadOnlyDictionary<string, TinyLife.Skills.FoodType>
2022-05-24 13:36:05 +02:00
nameWithType.vb : ReadOnlyDictionary(Of String, FoodType)
2023-03-30 18:07:55 +02:00
fullName.vb : System.Collections.ObjectModel.ReadOnlyDictionary(Of String, TinyLife.Skills.FoodType)
2022-05-24 13:36:05 +02:00
name.vb : ReadOnlyDictionary(Of String, FoodType)
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
name : ReadOnlyDictionary
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
2021-08-04 06:51:12 +02:00
- name : <
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : '>'
spec.vb :
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
name : ReadOnlyDictionary
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name : (
- name : Of
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : )
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
commentId : T:System.Collections.ObjectModel.ReadOnlyDictionary`2
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
2022-05-24 13:36:05 +02:00
name : ReadOnlyDictionary<TKey, TValue>
nameWithType : ReadOnlyDictionary<TKey, TValue>
fullName : System.Collections.ObjectModel.ReadOnlyDictionary<TKey, TValue>
nameWithType.vb : ReadOnlyDictionary(Of TKey, TValue)
fullName.vb : System.Collections.ObjectModel.ReadOnlyDictionary(Of TKey, TValue)
name.vb : ReadOnlyDictionary(Of TKey, TValue)
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
name : ReadOnlyDictionary
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
2021-08-04 06:51:12 +02:00
- name : <
- name : TKey
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- name : TValue
- name : '>'
spec.vb :
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel.ReadOnlyDictionary`2
name : ReadOnlyDictionary
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name : (
- name : Of
- name : " "
2021-08-04 06:51:12 +02:00
- name : TKey
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- name : TValue
- name : )
2022-05-24 13:36:05 +02:00
- uid : System.Collections.ObjectModel
commentId : N : System.Collections.ObjectModel
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2022-05-24 13:36:05 +02:00
name : System.Collections.ObjectModel
nameWithType : System.Collections.ObjectModel
fullName : System.Collections.ObjectModel
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.ObjectModel
name : ObjectModel
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel
spec.vb :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.ObjectModel
name : ObjectModel
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.objectmodel
2022-06-10 12:18:26 +02:00
- uid : TinyLife.Skills.FoodType.FoodIntolerance
commentId : T:TinyLife.Skills.FoodType.FoodIntolerance
parent : TinyLife.Skills
name : FoodType.FoodIntolerance
nameWithType : FoodType.FoodIntolerance
fullName : TinyLife.Skills.FoodType.FoodIntolerance
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : .
- uid : TinyLife.Skills.FoodType.FoodIntolerance
name : FoodIntolerance
spec.vb :
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : .
- uid : TinyLife.Skills.FoodType.FoodIntolerance
name : FoodIntolerance
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.FoodIntolerance[]
isExternal : true
2023-03-30 18:07:55 +02:00
name : FoodIntolerance[]
2022-06-09 20:12:10 +02:00
nameWithType : FoodType.FoodIntolerance[]
fullName : TinyLife.Skills.FoodType.FoodIntolerance[]
nameWithType.vb : FoodType.FoodIntolerance()
fullName.vb : TinyLife.Skills.FoodType.FoodIntolerance()
2023-03-30 18:07:55 +02:00
name.vb : FoodIntolerance()
2022-06-09 20:12:10 +02:00
spec.csharp :
- uid : TinyLife.Skills.FoodType.FoodIntolerance
2023-03-30 18:07:55 +02:00
name : FoodIntolerance
- name : '['
- name : ']'
2022-06-09 20:12:10 +02:00
spec.vb :
- uid : TinyLife.Skills.FoodType.FoodIntolerance
2023-03-30 18:07:55 +02:00
name : FoodIntolerance
- name : (
- name : )
2022-11-12 13:53:28 +01:00
- uid : System.Action
commentId : T:System.Action
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action
2022-03-09 16:13:05 +01:00
name : Action
nameWithType : Action
2022-11-12 13:53:28 +01:00
fullName : System.Action
2022-03-09 16:13:05 +01:00
- uid : TinyLife.Skills.FoodType.OnEaten
commentId : P:TinyLife.Skills.FoodType.OnEaten
2023-03-30 18:07:55 +02:00
name : OnEaten
nameWithType : FoodType.OnEaten
fullName : TinyLife.Skills.FoodType.OnEaten
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem)
commentId : M:TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem)
2023-03-30 18:07:55 +02:00
name : InvokeOnEaten(Action, FoodTypedItem)
nameWithType : FoodType.InvokeOnEaten(Action, FoodTypedItem)
fullName : TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action, TinyLife.Objects.FoodTypedItem)
spec.csharp :
- uid : TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem)
name : InvokeOnEaten
- name : (
- uid : TinyLife.Actions.Action
name : Action
- name : ','
- name : " "
- uid : TinyLife.Objects.FoodTypedItem
name : FoodTypedItem
- name : )
spec.vb :
- uid : TinyLife.Skills.FoodType.InvokeOnEaten(TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem)
name : InvokeOnEaten
- name : (
- uid : TinyLife.Actions.Action
name : Action
- name : ','
- name : " "
- uid : TinyLife.Objects.FoodTypedItem
name : FoodTypedItem
- name : )
2022-06-09 20:12:10 +02:00
- uid : System.Action{TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem,TinyLife.Skills.FoodType}
commentId : T:System.Action{TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem,TinyLife.Skills.FoodType}
2022-01-08 12:41:09 +01:00
parent : System
2022-06-09 20:12:10 +02:00
definition : System.Action`3
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-3
2022-06-09 20:12:10 +02:00
name : Action<Action, FoodTypedItem, FoodType>
nameWithType : Action<Action, FoodTypedItem, FoodType>
fullName : System.Action<TinyLife.Actions.Action, TinyLife.Objects.FoodTypedItem, TinyLife.Skills.FoodType>
nameWithType.vb : Action(Of Action, FoodTypedItem, FoodType)
fullName.vb : System.Action(Of TinyLife.Actions.Action, TinyLife.Objects.FoodTypedItem, TinyLife.Skills.FoodType)
name.vb : Action(Of Action, FoodTypedItem, FoodType)
2022-01-08 12:41:09 +01:00
spec.csharp :
2022-06-09 20:12:10 +02:00
- uid : System.Action`3
2022-01-08 12:41:09 +01:00
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-3
2022-01-08 12:41:09 +01:00
- name : <
- uid : TinyLife.Actions.Action
name : Action
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Objects.FoodTypedItem
name : FoodTypedItem
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-01-08 12:41:09 +01:00
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : '>'
spec.vb :
2022-06-09 20:12:10 +02:00
- uid : System.Action`3
2022-01-08 12:41:09 +01:00
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-3
- name : (
- name : Of
- name : " "
2022-01-08 12:41:09 +01:00
- uid : TinyLife.Actions.Action
name : Action
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Objects.FoodTypedItem
name : FoodTypedItem
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-01-08 12:41:09 +01:00
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : )
2022-06-09 20:12:10 +02:00
- uid : System.Action`3
commentId : T:System.Action`3
2022-01-08 12:41:09 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-3
2022-06-09 20:12:10 +02:00
name : Action<T1, T2, T3>
nameWithType : Action<T1, T2, T3>
fullName : System.Action<T1, T2, T3>
nameWithType.vb : Action(Of T1, T2, T3)
fullName.vb : System.Action(Of T1, T2, T3)
name.vb : Action(Of T1, T2, T3)
2022-01-08 12:41:09 +01:00
spec.csharp :
2022-06-09 20:12:10 +02:00
- uid : System.Action`3
2022-01-08 12:41:09 +01:00
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-3
2022-01-08 12:41:09 +01:00
- name : <
- name : T1
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-01-08 12:41:09 +01:00
- name : T2
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- name : T3
2022-01-08 12:41:09 +01:00
- name : '>'
spec.vb :
2022-06-09 20:12:10 +02:00
- uid : System.Action`3
2022-01-08 12:41:09 +01:00
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-3
- name : (
- name : Of
- name : " "
2022-01-08 12:41:09 +01:00
- name : T1
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-01-08 12:41:09 +01:00
- name : T2
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- name : T3
2022-01-08 12:41:09 +01:00
- name : )
2021-08-04 06:51:12 +02:00
- uid : System.String
commentId : T:System.String
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : string
nameWithType : string
fullName : string
nameWithType.vb : String
fullName.vb : String
name.vb : String
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.SkillType.Cooking
commentId : F:TinyLife.Skills.SkillType.Cooking
2023-03-30 18:07:55 +02:00
name : Cooking
nameWithType : SkillType.Cooking
fullName : TinyLife.Skills.SkillType.Cooking
2021-08-04 06:51:12 +02:00
- uid : System.Int32
commentId : T:System.Int32
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
name : int
nameWithType : int
fullName : int
nameWithType.vb : Integer
fullName.vb : Integer
name.vb : Integer
- uid : System.Single
commentId : T:System.Single
parent : System
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
name : float
nameWithType : float
fullName : float
nameWithType.vb : Single
fullName.vb : Single
name.vb : Single
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
commentId : T:Microsoft.Xna.Framework.Color
parent : Microsoft.Xna.Framework
2022-05-24 13:36:05 +02:00
isExternal : true
name : Color
nameWithType : Color
2022-09-05 14:19:42 +02:00
fullName : Microsoft.Xna.Framework.Color
- uid : Microsoft.Xna.Framework
commentId : N : Microsoft.Xna.Framework
isExternal : true
name : Microsoft.Xna.Framework
nameWithType : Microsoft.Xna.Framework
fullName : Microsoft.Xna.Framework
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
spec.vb :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.IngredientSource
commentId : T:TinyLife.Skills.FoodType.IngredientSource
parent : TinyLife.Skills
name : FoodType.IngredientSource
nameWithType : FoodType.IngredientSource
fullName : TinyLife.Skills.FoodType.IngredientSource
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : .
- uid : TinyLife.Skills.FoodType.IngredientSource
name : IngredientSource
spec.vb :
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : .
- uid : TinyLife.Skills.FoodType.IngredientSource
name : IngredientSource
2022-06-09 20:12:10 +02:00
- uid : System.Collections.Generic.ISet{TinyLife.Skills.FoodType.IngredientSource}
commentId : T:System.Collections.Generic.ISet{TinyLife.Skills.FoodType.IngredientSource}
2022-05-24 13:36:05 +02:00
parent : System.Collections.Generic
2022-06-09 20:12:10 +02:00
definition : System.Collections.Generic.ISet`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
2022-06-09 20:12:10 +02:00
name : ISet<FoodType.IngredientSource>
nameWithType : ISet<FoodType.IngredientSource>
fullName : System.Collections.Generic.ISet<TinyLife.Skills.FoodType.IngredientSource>
nameWithType.vb : ISet(Of FoodType.IngredientSource)
fullName.vb : System.Collections.Generic.ISet(Of TinyLife.Skills.FoodType.IngredientSource)
name.vb : ISet(Of FoodType.IngredientSource)
2022-05-24 13:36:05 +02:00
spec.csharp :
2022-06-09 20:12:10 +02:00
- uid : System.Collections.Generic.ISet`1
name : ISet
2022-05-24 13:36:05 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
2022-05-24 13:36:05 +02:00
- name : <
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : .
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Skills.FoodType.IngredientSource
2023-03-30 18:07:55 +02:00
name : IngredientSource
2022-05-24 13:36:05 +02:00
- name : '>'
spec.vb :
2022-06-09 20:12:10 +02:00
- uid : System.Collections.Generic.ISet`1
name : ISet
2022-05-24 13:36:05 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
- name : (
- name : Of
- name : " "
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : .
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Skills.FoodType.IngredientSource
2023-03-30 18:07:55 +02:00
name : IngredientSource
2022-05-24 13:36:05 +02:00
- name : )
2022-06-09 20:12:10 +02:00
- uid : System.Collections.Generic.ISet`1
commentId : T:System.Collections.Generic.ISet`1
2022-05-24 13:36:05 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
2022-06-09 20:12:10 +02:00
name : ISet<T>
nameWithType : ISet<T>
fullName : System.Collections.Generic.ISet<T>
nameWithType.vb : ISet(Of T)
fullName.vb : System.Collections.Generic.ISet(Of T)
name.vb : ISet(Of T)
2022-05-24 13:36:05 +02:00
spec.csharp :
2022-06-09 20:12:10 +02:00
- uid : System.Collections.Generic.ISet`1
name : ISet
2022-05-24 13:36:05 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
2022-05-24 13:36:05 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
2022-06-09 20:12:10 +02:00
- uid : System.Collections.Generic.ISet`1
name : ISet
2022-05-24 13:36:05 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1
- name : (
- name : Of
- name : " "
2022-05-24 13:36:05 +02:00
- name : T
- name : )
- uid : System.Collections.Generic
commentId : N : System.Collections.Generic
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2022-05-24 13:36:05 +02:00
name : System.Collections.Generic
nameWithType : System.Collections.Generic
fullName : System.Collections.Generic
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.Generic
name : Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.Generic
name : Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.SkillType
commentId : T:TinyLife.Skills.SkillType
parent : TinyLife.Skills
name : SkillType
nameWithType : SkillType
fullName : TinyLife.Skills.SkillType
- uid : TinyLife.Skills.FoodType.RequiredSkillLevel
commentId : F:TinyLife.Skills.FoodType.RequiredSkillLevel
2023-03-30 18:07:55 +02:00
name : RequiredSkillLevel
nameWithType : FoodType.RequiredSkillLevel
fullName : TinyLife.Skills.FoodType.RequiredSkillLevel
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.RequiredSkill*
commentId : Overload:TinyLife.Skills.FoodType.RequiredSkill
name : RequiredSkill
nameWithType : FoodType.RequiredSkill
fullName : TinyLife.Skills.FoodType.RequiredSkill
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.ObjectCategory.Stove
commentId : F:TinyLife.Objects.ObjectCategory.Stove
2023-03-30 18:07:55 +02:00
name : Stove
nameWithType : ObjectCategory.Stove
fullName : TinyLife.Objects.ObjectCategory.Stove
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Objects.ObjectCategory.Oven
commentId : F:TinyLife.Objects.ObjectCategory.Oven
2023-03-30 18:07:55 +02:00
name : Oven
nameWithType : ObjectCategory.Oven
fullName : TinyLife.Objects.ObjectCategory.Oven
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.IngredientSource.Fridge
commentId : F:TinyLife.Skills.FoodType.IngredientSource.Fridge
2023-03-30 18:07:55 +02:00
name : Fridge
nameWithType : FoodType.IngredientSource.Fridge
fullName : TinyLife.Skills.FoodType.IngredientSource.Fridge
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.AdditionalObject*
commentId : Overload:TinyLife.Skills.FoodType.AdditionalObject
name : AdditionalObject
nameWithType : FoodType.AdditionalObject
fullName : TinyLife.Skills.FoodType.AdditionalObject
- uid : TinyLife.Objects.ObjectCategory
commentId : T:TinyLife.Objects.ObjectCategory
parent : TinyLife.Objects
name : ObjectCategory
nameWithType : ObjectCategory
fullName : TinyLife.Objects.ObjectCategory
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Objects
name : Objects
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Objects
name : Objects
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Skills.FoodType.Container*
commentId : Overload:TinyLife.Skills.FoodType.Container
name : Container
nameWithType : FoodType.Container
fullName : TinyLife.Skills.FoodType.Container
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.OnEaten*
commentId : Overload:TinyLife.Skills.FoodType.OnEaten
name : OnEaten
nameWithType : FoodType.OnEaten
fullName : TinyLife.Skills.FoodType.OnEaten
2022-06-09 20:12:10 +02:00
- uid : System.Action{TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem}
commentId : T:System.Action{TinyLife.Actions.Action,TinyLife.Objects.FoodTypedItem}
2021-08-04 06:51:12 +02:00
parent : System
2022-06-09 20:12:10 +02:00
definition : System.Action`2
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-2
2022-06-09 20:12:10 +02:00
name : Action<Action, FoodTypedItem>
nameWithType : Action<Action, FoodTypedItem>
fullName : System.Action<TinyLife.Actions.Action, TinyLife.Objects.FoodTypedItem>
nameWithType.vb : Action(Of Action, FoodTypedItem)
fullName.vb : System.Action(Of TinyLife.Actions.Action, TinyLife.Objects.FoodTypedItem)
name.vb : Action(Of Action, FoodTypedItem)
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-06-09 20:12:10 +02:00
- uid : System.Action`2
2021-08-04 06:51:12 +02:00
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-2
2021-08-04 06:51:12 +02:00
- name : <
- uid : TinyLife.Actions.Action
name : Action
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Objects.FoodTypedItem
name : FoodTypedItem
2021-08-04 06:51:12 +02:00
- name : '>'
spec.vb :
2022-06-09 20:12:10 +02:00
- uid : System.Action`2
2021-08-04 06:51:12 +02:00
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-2
- name : (
- name : Of
- name : " "
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.Action
name : Action
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Objects.FoodTypedItem
name : FoodTypedItem
2021-08-04 06:51:12 +02:00
- name : )
2022-06-09 20:12:10 +02:00
- uid : System.Action`2
commentId : T:System.Action`2
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-2
2022-06-09 20:12:10 +02:00
name : Action<T1, T2>
nameWithType : Action<T1, T2>
fullName : System.Action<T1, T2>
nameWithType.vb : Action(Of T1, T2)
fullName.vb : System.Action(Of T1, T2)
name.vb : Action(Of T1, T2)
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-06-09 20:12:10 +02:00
- uid : System.Action`2
2021-08-04 06:51:12 +02:00
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-2
2021-08-04 06:51:12 +02:00
- name : <
2022-06-09 20:12:10 +02:00
- name : T1
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- name : T2
2021-08-04 06:51:12 +02:00
- name : '>'
spec.vb :
2022-06-09 20:12:10 +02:00
- uid : System.Action`2
2021-08-04 06:51:12 +02:00
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-2
- name : (
- name : Of
- name : " "
2022-06-09 20:12:10 +02:00
- name : T1
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- name : T2
2021-08-04 06:51:12 +02:00
- name : )
- uid : TinyLife.Actions.ActionType.CanExecuteDelegate
commentId : T:TinyLife.Actions.ActionType.CanExecuteDelegate
parent : TinyLife.Actions
name : ActionType.CanExecuteDelegate
nameWithType : ActionType.CanExecuteDelegate
fullName : TinyLife.Actions.ActionType.CanExecuteDelegate
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife.Actions.ActionType
name : ActionType
- name : .
- uid : TinyLife.Actions.ActionType.CanExecuteDelegate
name : CanExecuteDelegate
spec.vb :
- uid : TinyLife.Actions.ActionType
name : ActionType
- name : .
- uid : TinyLife.Actions.ActionType.CanExecuteDelegate
name : CanExecuteDelegate
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean)
commentId : M:TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean)
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : CanEat(Person, FoodTypedItem, bool)
nameWithType : FoodType.CanEat(Person, FoodTypedItem, bool)
fullName : TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person, TinyLife.Objects.FoodTypedItem, bool)
nameWithType.vb : FoodType.CanEat(Person, FoodTypedItem, Boolean)
fullName.vb : TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person, TinyLife.Objects.FoodTypedItem, Boolean)
name.vb : CanEat(Person, FoodTypedItem, Boolean)
spec.csharp :
- uid : TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean)
name : CanEat
- name : (
- uid : TinyLife.Objects.Person
name : Person
- name : ','
- name : " "
- uid : TinyLife.Objects.FoodTypedItem
name : FoodTypedItem
- name : ','
- name : " "
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
spec.vb :
- uid : TinyLife.Skills.FoodType.CanEat(TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean)
name : CanEat
- name : (
- uid : TinyLife.Objects.Person
name : Person
- name : ','
- name : " "
- uid : TinyLife.Objects.FoodTypedItem
name : FoodTypedItem
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.CanEatFunc*
commentId : Overload:TinyLife.Skills.FoodType.CanEatFunc
name : CanEatFunc
nameWithType : FoodType.CanEatFunc
fullName : TinyLife.Skills.FoodType.CanEatFunc
- uid : System.Func{System.ValueTuple{TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean},TinyLife.Actions.CanExecuteResult}
commentId : T:System.Func{System.ValueTuple{TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean},TinyLife.Actions.CanExecuteResult}
parent : System
definition : System.Func`2
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
name : Func<(Person Person, FoodTypedItem Food, bool Automatic), CanExecuteResult>
nameWithType : Func<(Person Person, FoodTypedItem Food, bool Automatic), CanExecuteResult>
fullName : System.Func<(TinyLife.Objects.Person Person, TinyLife.Objects.FoodTypedItem Food, bool Automatic), TinyLife.Actions.CanExecuteResult>
nameWithType.vb : Func(Of (Person As Person, Food As FoodTypedItem, Automatic As Boolean), CanExecuteResult)
fullName.vb : System.Func(Of (Person As TinyLife.Objects.Person, Food As TinyLife.Objects.FoodTypedItem, Automatic As Boolean), TinyLife.Actions.CanExecuteResult)
name.vb : Func(Of (Person As Person, Food As FoodTypedItem, Automatic As Boolean), CanExecuteResult)
2022-06-09 20:12:10 +02:00
spec.csharp :
- uid : System.Func`2
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
2022-06-09 20:12:10 +02:00
- name : <
2023-03-30 18:07:55 +02:00
- name : (
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Objects.Person
name : Person
2023-03-30 18:07:55 +02:00
- name : " "
- uid : System.ValueTuple{TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean}.Person
name : Person
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.objects.foodtypeditem,system.boolean-.person
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Objects.FoodTypedItem
name : FoodTypedItem
2023-03-30 18:07:55 +02:00
- name : " "
- uid : System.ValueTuple{TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean}.Food
name : Food
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.objects.foodtypeditem,system.boolean-.food
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2022-06-09 20:12:10 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : " "
- uid : System.ValueTuple{TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean}.Automatic
name : Automatic
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.objects.foodtypeditem,system.boolean-.automatic
- name : )
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Actions.CanExecuteResult
name : CanExecuteResult
- name : '>'
spec.vb :
- uid : System.Func`2
name : Func
2023-03-30 18:07:55 +02:00
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.func-2
- name : (
- name : Of
- name : " "
- name : (
- uid : System.ValueTuple{TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean}.Person
name : Person
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.objects.foodtypeditem,system.boolean-.person
- name : " "
- name : As
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Objects.Person
name : Person
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.ValueTuple{TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean}.Food
name : Food
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.objects.foodtypeditem,system.boolean-.food
- name : " "
- name : As
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Objects.FoodTypedItem
name : FoodTypedItem
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.ValueTuple{TinyLife.Objects.Person,TinyLife.Objects.FoodTypedItem,System.Boolean}.Automatic
name : Automatic
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.person,tinylife.objects.foodtypeditem,system.boolean-.automatic
- name : " "
- name : As
- name : " "
2022-06-09 20:12:10 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2022-06-09 20:12:10 +02:00
- name : )
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Actions.CanExecuteResult
name : CanExecuteResult
- name : )
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions
commentId : N : TinyLife.Actions
name : TinyLife.Actions
nameWithType : TinyLife.Actions
fullName : TinyLife.Actions
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Actions
name : Actions
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Actions
name : Actions
2022-06-09 20:12:10 +02:00
- uid : System.Func`2
commentId : T:System.Func`2
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
2022-06-09 20:12:10 +02:00
name : Func<T, TResult>
nameWithType : Func<T, TResult>
fullName : System.Func<T, TResult>
nameWithType.vb : Func(Of T, TResult)
fullName.vb : System.Func(Of T, TResult)
name.vb : Func(Of T, TResult)
spec.csharp :
- uid : System.Func`2
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
2022-06-09 20:12:10 +02:00
- name : <
- name : T
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- name : TResult
- name : '>'
spec.vb :
- uid : System.Func`2
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
- name : (
- name : Of
- name : " "
2022-06-09 20:12:10 +02:00
- name : T
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- name : TResult
- name : )
2022-06-10 12:18:26 +02:00
- uid : TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single)
commentId : M:TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single)
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : CanCreate(ActionInfo, bool, int, float)
nameWithType : FoodType.CanCreate(ActionInfo, bool, int, float)
fullName : TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo, bool, int, float)
nameWithType.vb : FoodType.CanCreate(ActionInfo, Boolean, Integer, Single)
fullName.vb : TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo, Boolean, Integer, Single)
name.vb : CanCreate(ActionInfo, Boolean, Integer, Single)
spec.csharp :
- uid : TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single)
name : CanCreate
- name : (
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
- name : ','
- name : " "
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : System.Int32
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
spec.vb :
- uid : TinyLife.Skills.FoodType.CanCreate(TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single)
name : CanCreate
- name : (
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : System.Int32
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.CanCreateFunc*
commentId : Overload:TinyLife.Skills.FoodType.CanCreateFunc
name : CanCreateFunc
nameWithType : FoodType.CanCreateFunc
fullName : TinyLife.Skills.FoodType.CanCreateFunc
- uid : System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single},TinyLife.Actions.CanExecuteResult}
commentId : T:System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single},TinyLife.Actions.CanExecuteResult}
parent : System
definition : System.Func`2
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
name : Func<(ActionInfo Info, bool Automatic, int ServingSize, float PriceMarkup), CanExecuteResult>
nameWithType : Func<(ActionInfo Info, bool Automatic, int ServingSize, float PriceMarkup), CanExecuteResult>
fullName : System.Func<(TinyLife.Actions.ActionInfo Info, bool Automatic, int ServingSize, float PriceMarkup), TinyLife.Actions.CanExecuteResult>
nameWithType.vb : Func(Of (Info As ActionInfo, Automatic As Boolean, ServingSize As Integer, PriceMarkup As Single), CanExecuteResult)
fullName.vb : System.Func(Of (Info As TinyLife.Actions.ActionInfo, Automatic As Boolean, ServingSize As Integer, PriceMarkup As Single), TinyLife.Actions.CanExecuteResult)
name.vb : Func(Of (Info As ActionInfo, Automatic As Boolean, ServingSize As Integer, PriceMarkup As Single), CanExecuteResult)
2022-06-09 20:12:10 +02:00
spec.csharp :
- uid : System.Func`2
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
2022-06-09 20:12:10 +02:00
- name : <
2023-03-30 18:07:55 +02:00
- name : (
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2023-03-30 18:07:55 +02:00
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single}.Info
name : Info
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,system.boolean,system.int32,system.single-.info
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single}.Automatic
name : Automatic
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,system.boolean,system.int32,system.single-.automatic
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : System.Int32
2023-03-30 18:07:55 +02:00
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single}.ServingSize
name : ServingSize
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,system.boolean,system.int32,system.single-.servingsize
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : System.Single
2023-03-30 18:07:55 +02:00
name : float
2022-06-09 20:12:10 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single}.PriceMarkup
name : PriceMarkup
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,system.boolean,system.int32,system.single-.pricemarkup
- name : )
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Actions.CanExecuteResult
name : CanExecuteResult
- name : '>'
spec.vb :
- uid : System.Func`2
name : Func
2023-03-30 18:07:55 +02:00
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.func-2
- name : (
- name : Of
- name : " "
- name : (
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single}.Info
name : Info
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,system.boolean,system.int32,system.single-.info
- name : " "
- name : As
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single}.Automatic
name : Automatic
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,system.boolean,system.int32,system.single-.automatic
- name : " "
- name : As
- name : " "
2022-06-09 20:12:10 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : ','
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single}.ServingSize
name : ServingSize
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,system.boolean,system.int32,system.single-.servingsize
- name : " "
- name : As
- name : " "
2022-06-09 20:12:10 +02:00
- uid : System.Int32
2023-03-30 18:07:55 +02:00
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : ','
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,System.Boolean,System.Int32,System.Single}.PriceMarkup
name : PriceMarkup
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,system.boolean,system.int32,system.single-.pricemarkup
- name : " "
- name : As
- name : " "
2022-06-09 20:12:10 +02:00
- uid : System.Single
name : Single
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
2022-06-09 20:12:10 +02:00
- name : )
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Actions.CanExecuteResult
name : CanExecuteResult
- name : )
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.CustomTextureFunc*
commentId : Overload:TinyLife.Skills.FoodType.CustomTextureFunc
name : CustomTextureFunc
nameWithType : FoodType.CustomTextureFunc
fullName : TinyLife.Skills.FoodType.CustomTextureFunc
- uid : System.Func{System.Int32,MLEM.Textures.TextureRegion}
commentId : T:System.Func{System.Int32,MLEM.Textures.TextureRegion}
parent : System
definition : System.Func`2
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
name : Func<int, TextureRegion>
nameWithType : Func<int, TextureRegion>
fullName : System.Func<int, MLEM.Textures.TextureRegion>
nameWithType.vb : Func(Of Integer, TextureRegion)
fullName.vb : System.Func(Of Integer, MLEM.Textures.TextureRegion)
name.vb : Func(Of Integer, TextureRegion)
2022-07-04 16:50:43 +02:00
spec.csharp :
- uid : System.Func`2
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
2022-07-04 16:50:43 +02:00
- name : <
- uid : System.Int32
2023-03-30 18:07:55 +02:00
name : int
2022-07-04 16:50:43 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : ','
- name : " "
2022-07-04 16:50:43 +02:00
- uid : MLEM.Textures.TextureRegion
name : TextureRegion
isExternal : true
- name : '>'
spec.vb :
- uid : System.Func`2
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
- name : (
- name : Of
- name : " "
2022-07-04 16:50:43 +02:00
- uid : System.Int32
2023-03-30 18:07:55 +02:00
name : Integer
2022-07-04 16:50:43 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : ','
- name : " "
2022-07-04 16:50:43 +02:00
- uid : MLEM.Textures.TextureRegion
name : TextureRegion
isExternal : true
- name : )
- uid : System.Func{TinyLife.Objects.Food,System.Boolean}
commentId : T:System.Func{TinyLife.Objects.Food,System.Boolean}
parent : System
definition : System.Func`2
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
name : Func<Food, bool>
nameWithType : Func<Food, bool>
fullName : System.Func<TinyLife.Objects.Food, bool>
2022-07-04 16:50:43 +02:00
nameWithType.vb : Func(Of Food, Boolean)
2023-03-30 18:07:55 +02:00
fullName.vb : System.Func(Of TinyLife.Objects.Food, Boolean)
2022-07-04 16:50:43 +02:00
name.vb : Func(Of Food, Boolean)
spec.csharp :
- uid : System.Func`2
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
2022-07-04 16:50:43 +02:00
- name : <
- uid : TinyLife.Objects.Food
name : Food
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-07-04 16:50:43 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2022-07-04 16:50:43 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2022-07-04 16:50:43 +02:00
- name : '>'
spec.vb :
- uid : System.Func`2
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-2
- name : (
- name : Of
- name : " "
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Objects.Food
name : Food
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-07-04 16:50:43 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2022-07-04 16:50:43 +02:00
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.LnCategory.Food
commentId : F:TinyLife.LnCategory.Food
2023-03-30 18:07:55 +02:00
name : Food
nameWithType : LnCategory.Food
fullName : TinyLife.LnCategory.Food
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.DisplayName*
commentId : Overload:TinyLife.Skills.FoodType.DisplayName
name : DisplayName
nameWithType : FoodType.DisplayName
fullName : TinyLife.Skills.FoodType.DisplayName
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Skills.FoodType.SourceString*
commentId : Overload:TinyLife.Skills.FoodType.SourceString
name : SourceString
nameWithType : FoodType.SourceString
fullName : TinyLife.Skills.FoodType.SourceString
- uid : TinyLife.Emotions.IEmotionSource.SourceString
commentId : P:TinyLife.Emotions.IEmotionSource.SourceString
parent : TinyLife.Emotions.IEmotionSource
name : SourceString
nameWithType : IEmotionSource.SourceString
fullName : TinyLife.Emotions.IEmotionSource.SourceString
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.RequiredSkill
commentId : P:TinyLife.Skills.FoodType.RequiredSkill
2023-03-30 18:07:55 +02:00
name : RequiredSkill
nameWithType : FoodType.RequiredSkill
fullName : TinyLife.Skills.FoodType.RequiredSkill
2022-05-24 13:36:05 +02:00
- uid : Microsoft.Xna.Framework.Color.White
commentId : P:Microsoft.Xna.Framework.Color.White
isExternal : true
2023-03-30 18:07:55 +02:00
name : White
nameWithType : Color.White
fullName : Microsoft.Xna.Framework.Color.White
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.#ctor*
commentId : Overload:TinyLife.Skills.FoodType.#ctor
name : FoodType
nameWithType : FoodType.FoodType
fullName : TinyLife.Skills.FoodType.FoodType
2023-03-30 18:07:55 +02:00
nameWithType.vb : FoodType.New
fullName.vb : TinyLife.Skills.FoodType.New
name.vb : New
2022-09-05 14:19:42 +02:00
- uid : System.Nullable{Microsoft.Xna.Framework.Color}
commentId : T:System.Nullable{Microsoft.Xna.Framework.Color}
2022-05-24 13:36:05 +02:00
parent : System
definition : System.Nullable`1
2023-03-30 18:07:55 +02:00
name : Color?
nameWithType : Color?
fullName : Microsoft.Xna.Framework.Color?
2022-05-24 13:36:05 +02:00
spec.csharp :
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
2022-05-24 13:36:05 +02:00
name : Color
isExternal : true
2023-03-30 18:07:55 +02:00
- name : '?'
2022-05-24 13:36:05 +02:00
spec.vb :
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Color
2022-05-24 13:36:05 +02:00
name : Color
isExternal : true
2023-03-30 18:07:55 +02:00
- name : '?'
2022-05-24 13:36:05 +02:00
- uid : System.Nullable`1
commentId : T:System.Nullable`1
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
2022-05-24 13:36:05 +02:00
name : Nullable<T>
nameWithType : Nullable<T>
fullName : System.Nullable<T>
nameWithType.vb : Nullable(Of T)
fullName.vb : System.Nullable(Of T)
name.vb : Nullable(Of T)
spec.csharp :
- uid : System.Nullable`1
name : Nullable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
2022-05-24 13:36:05 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Nullable`1
name : Nullable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
- name : (
- name : Of
- name : " "
2022-05-24 13:36:05 +02:00
- name : T
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.GetPrice*
commentId : Overload:TinyLife.Skills.FoodType.GetPrice
name : GetPrice
nameWithType : FoodType.GetPrice
fullName : TinyLife.Skills.FoodType.GetPrice
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Objects.Food
commentId : T:TinyLife.Objects.Food
parent : TinyLife.Objects
name : Food
nameWithType : Food
fullName : TinyLife.Objects.Food
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Objects.Food.FoodLeft
commentId : F:TinyLife.Objects.Food.FoodLeft
name : FoodLeft
nameWithType : Food.FoodLeft
fullName : TinyLife.Objects.Food.FoodLeft
2022-07-28 14:58:38 +02:00
- uid : TinyLife.World.Map.Time
commentId : P:TinyLife.World.Map.Time
2023-03-30 18:07:55 +02:00
name : Time
nameWithType : Map.Time
fullName : TinyLife.World.Map.Time
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.Person
commentId : T:TinyLife.Objects.Person
parent : TinyLife.Objects
name : Person
nameWithType : Person
fullName : TinyLife.Objects.Person
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.AutoGoalInfo
commentId : T:TinyLife.Goals.AutoGoalInfo
parent : TinyLife.Goals
name : AutoGoalInfo
nameWithType : AutoGoalInfo
fullName : TinyLife.Goals.AutoGoalInfo
- uid : TinyLife.Objects.Furniture.SetCreator(TinyLife.Objects.Person,System.Boolean)
commentId : M:TinyLife.Objects.Furniture.SetCreator(TinyLife.Objects.Person,System.Boolean)
parent : TinyLife.Objects.Furniture
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : SetCreator(Person, bool)
nameWithType : Furniture.SetCreator(Person, bool)
fullName : TinyLife.Objects.Furniture.SetCreator(TinyLife.Objects.Person, bool)
nameWithType.vb : Furniture.SetCreator(Person, Boolean)
fullName.vb : TinyLife.Objects.Furniture.SetCreator(TinyLife.Objects.Person, Boolean)
name.vb : SetCreator(Person, Boolean)
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : TinyLife.Objects.Furniture.SetCreator(TinyLife.Objects.Person,System.Boolean)
name : SetCreator
- name : (
- uid : TinyLife.Objects.Person
name : Person
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : TinyLife.Objects.Furniture.SetCreator(TinyLife.Objects.Person,System.Boolean)
name : SetCreator
- name : (
- uid : TinyLife.Objects.Person
name : Person
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Boolean
name : Boolean
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
2021-10-14 20:30:40 +02:00
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.Construct*
commentId : Overload:TinyLife.Skills.FoodType.Construct
name : Construct
nameWithType : FoodType.Construct
fullName : TinyLife.Skills.FoodType.Construct
- uid : TinyLife.World.Map
commentId : T:TinyLife.World.Map
parent : TinyLife.World
name : Map
nameWithType : Map
fullName : TinyLife.World.Map
- uid : TinyLife.Skills.Quality
commentId : T:TinyLife.Skills.Quality
parent : TinyLife.Skills
name : Quality
nameWithType : Quality
fullName : TinyLife.Skills.Quality
- uid : System.TimeSpan
commentId : T:System.TimeSpan
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
2021-08-04 06:51:12 +02:00
name : TimeSpan
nameWithType : TimeSpan
fullName : System.TimeSpan
- uid : System.Nullable{System.Guid}
commentId : T:System.Nullable{System.Guid}
parent : System
definition : System.Nullable`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.guid
name : Guid?
nameWithType : Guid?
fullName : System.Guid?
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Guid
name : Guid
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.guid
- name : '?'
2021-08-04 06:51:12 +02:00
spec.vb :
- uid : System.Guid
name : Guid
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.guid
- name : '?'
2022-07-04 16:50:43 +02:00
- uid : System.Boolean
commentId : T:System.Boolean
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : bool
nameWithType : bool
fullName : bool
nameWithType.vb : Boolean
fullName.vb : Boolean
name.vb : Boolean
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals
commentId : N : TinyLife.Goals
name : TinyLife.Goals
nameWithType : TinyLife.Goals
fullName : TinyLife.Goals
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Goals
name : Goals
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Goals
name : Goals
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Furniture
commentId : T:TinyLife.Objects.Furniture
parent : TinyLife.Objects
name : Furniture
nameWithType : Furniture
fullName : TinyLife.Objects.Furniture
2021-08-04 06:51:12 +02:00
- uid : TinyLife.World
commentId : N : TinyLife.World
name : TinyLife.World
nameWithType : TinyLife.World
fullName : TinyLife.World
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.World
name : World
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.World
name : World
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.FoodTypedItem
commentId : T:TinyLife.Objects.FoodTypedItem
parent : TinyLife.Objects
name : FoodTypedItem
nameWithType : FoodTypedItem
fullName : TinyLife.Objects.FoodTypedItem
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Objects.FurnitureType
commentId : T:TinyLife.Objects.FurnitureType
parent : TinyLife.Objects
name : FurnitureType
nameWithType : FurnitureType
fullName : TinyLife.Objects.FurnitureType
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.ConstructUnfinished*
commentId : Overload:TinyLife.Skills.FoodType.ConstructUnfinished
name : ConstructUnfinished
nameWithType : FoodType.ConstructUnfinished
fullName : TinyLife.Skills.FoodType.ConstructUnfinished
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Actions.CanExecuteResult
commentId : T:TinyLife.Actions.CanExecuteResult
parent : TinyLife.Actions
name : CanExecuteResult
nameWithType : CanExecuteResult
fullName : TinyLife.Actions.CanExecuteResult
2022-06-10 12:18:26 +02:00
- uid : TinyLife.Skills.FoodType.CanEatFunc
commentId : P:TinyLife.Skills.FoodType.CanEatFunc
2023-03-30 18:07:55 +02:00
name : CanEatFunc
nameWithType : FoodType.CanEatFunc
fullName : TinyLife.Skills.FoodType.CanEatFunc
2022-06-10 12:18:26 +02:00
- uid : TinyLife.Skills.FoodType.Intolerances
commentId : F:TinyLife.Skills.FoodType.Intolerances
2023-03-30 18:07:55 +02:00
name : Intolerances
nameWithType : FoodType.Intolerances
fullName : TinyLife.Skills.FoodType.Intolerances
2022-06-10 12:18:26 +02:00
- uid : TinyLife.Skills.FoodType.CanEat*
commentId : Overload:TinyLife.Skills.FoodType.CanEat
name : CanEat
nameWithType : FoodType.CanEat
fullName : TinyLife.Skills.FoodType.CanEat
- uid : TinyLife.Skills.FoodType.CanCreateFunc
commentId : P:TinyLife.Skills.FoodType.CanCreateFunc
2023-03-30 18:07:55 +02:00
name : CanCreateFunc
nameWithType : FoodType.CanCreateFunc
fullName : TinyLife.Skills.FoodType.CanCreateFunc
2022-06-10 12:18:26 +02:00
- uid : TinyLife.Skills.FoodType.Price
commentId : F:TinyLife.Skills.FoodType.Price
2023-03-30 18:07:55 +02:00
name : Price
nameWithType : FoodType.Price
fullName : TinyLife.Skills.FoodType.Price
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.AdditionalObject
commentId : P:TinyLife.Skills.FoodType.AdditionalObject
2023-03-30 18:07:55 +02:00
name : AdditionalObject
nameWithType : FoodType.AdditionalObject
fullName : TinyLife.Skills.FoodType.AdditionalObject
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.CanCreate*
commentId : Overload:TinyLife.Skills.FoodType.CanCreate
name : CanCreate
nameWithType : FoodType.CanCreate
fullName : TinyLife.Skills.FoodType.CanCreate
- uid : TinyLife.Actions.ActionInfo
commentId : T:TinyLife.Actions.ActionInfo
parent : TinyLife.Actions
name : ActionInfo
nameWithType : ActionInfo
fullName : TinyLife.Actions.ActionInfo
- uid : TinyLife.Skills.FoodType.GetIntolerancesDescription*
commentId : Overload:TinyLife.Skills.FoodType.GetIntolerancesDescription
name : GetIntolerancesDescription
nameWithType : FoodType.GetIntolerancesDescription
fullName : TinyLife.Skills.FoodType.GetIntolerancesDescription
- uid : System.Collections.Generic.IEnumerable{System.String}
commentId : T:System.Collections.Generic.IEnumerable{System.String}
2021-08-04 06:51:12 +02:00
parent : System.Collections.Generic
definition : System.Collections.Generic.IEnumerable`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name : IEnumerable<string>
nameWithType : IEnumerable<string>
fullName : System.Collections.Generic.IEnumerable<string>
2022-06-09 20:12:10 +02:00
nameWithType.vb : IEnumerable(Of String)
2023-03-30 18:07:55 +02:00
fullName.vb : System.Collections.Generic.IEnumerable(Of String)
2022-06-09 20:12:10 +02:00
name.vb : IEnumerable(Of String)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-08-04 06:51:12 +02:00
- name : <
2022-06-09 20:12:10 +02:00
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-06-09 20:12:10 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-08-04 06:51:12 +02:00
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
2022-06-09 20:12:10 +02:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Collections.Generic.IEnumerable`1
commentId : T:System.Collections.Generic.IEnumerable`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-08-04 06:51:12 +02:00
name : IEnumerable<T>
nameWithType : IEnumerable<T>
fullName : System.Collections.Generic.IEnumerable<T>
nameWithType.vb : IEnumerable(Of T)
fullName.vb : System.Collections.Generic.IEnumerable(Of T)
name.vb : IEnumerable(Of T)
spec.csharp :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-08-04 06:51:12 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
2021-08-04 06:51:12 +02:00
- name : T
- name : )
2022-06-10 12:18:26 +02:00
- uid : TinyLife.Skills.FoodType.Sources
commentId : F:TinyLife.Skills.FoodType.Sources
2023-03-30 18:07:55 +02:00
name : Sources
nameWithType : FoodType.Sources
fullName : TinyLife.Skills.FoodType.Sources
2022-06-10 12:18:26 +02:00
- uid : TinyLife.Skills.FoodType.IngredientSource.OnEaten
commentId : P:TinyLife.Skills.FoodType.IngredientSource.OnEaten
2023-03-30 18:07:55 +02:00
name : OnEaten
nameWithType : FoodType.IngredientSource.OnEaten
fullName : TinyLife.Skills.FoodType.IngredientSource.OnEaten
2022-06-10 12:18:26 +02:00
- uid : TinyLife.Actions.ActionType.Eat
commentId : F:TinyLife.Actions.ActionType.Eat
2023-03-30 18:07:55 +02:00
name : Eat
nameWithType : ActionType.Eat
fullName : TinyLife.Actions.ActionType.Eat
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.InvokeOnEaten*
commentId : Overload:TinyLife.Skills.FoodType.InvokeOnEaten
name : InvokeOnEaten
nameWithType : FoodType.InvokeOnEaten
fullName : TinyLife.Skills.FoodType.InvokeOnEaten
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Action
commentId : T:TinyLife.Actions.Action
parent : TinyLife.Actions
name : Action
nameWithType : Action
fullName : TinyLife.Actions.Action
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.CustomTextureFunc
commentId : P:TinyLife.Skills.FoodType.CustomTextureFunc
2023-03-30 18:07:55 +02:00
name : CustomTextureFunc
nameWithType : FoodType.CustomTextureFunc
fullName : TinyLife.Skills.FoodType.CustomTextureFunc
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.ContainerType.GetDefaultTexture(TinyLife.Skills.FoodType)
commentId : M:TinyLife.Skills.FoodType.ContainerType.GetDefaultTexture(TinyLife.Skills.FoodType)
2023-03-30 18:07:55 +02:00
name : GetDefaultTexture(FoodType)
nameWithType : FoodType.ContainerType.GetDefaultTexture(FoodType)
fullName : TinyLife.Skills.FoodType.ContainerType.GetDefaultTexture(TinyLife.Skills.FoodType)
spec.csharp :
- uid : TinyLife.Skills.FoodType.ContainerType.GetDefaultTexture(TinyLife.Skills.FoodType)
name : GetDefaultTexture
- name : (
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : )
spec.vb :
- uid : TinyLife.Skills.FoodType.ContainerType.GetDefaultTexture(TinyLife.Skills.FoodType)
name : GetDefaultTexture
- name : (
- uid : TinyLife.Skills.FoodType
name : FoodType
- name : )
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Skills.FoodType.GetTexture*
commentId : Overload:TinyLife.Skills.FoodType.GetTexture
name : GetTexture
nameWithType : FoodType.GetTexture
fullName : TinyLife.Skills.FoodType.GetTexture
- uid : MLEM.Textures.TextureRegion
commentId : T:MLEM.Textures.TextureRegion
parent : MLEM.Textures
isExternal : true
name : TextureRegion
nameWithType : TextureRegion
fullName : MLEM.Textures.TextureRegion
- uid : MLEM.Textures
commentId : N : MLEM.Textures
isExternal : true
name : MLEM.Textures
nameWithType : MLEM.Textures
fullName : MLEM.Textures
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Textures
name : Textures
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Textures
name : Textures
isExternal : true
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.Register*
commentId : Overload:TinyLife.Skills.FoodType.Register
name : Register
nameWithType : FoodType.Register
fullName : TinyLife.Skills.FoodType.Register
- uid : TinyLife.Skills.FoodType.GetPrice(System.Int32)
commentId : M:TinyLife.Skills.FoodType.GetPrice(System.Int32)
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
name : GetPrice(int)
nameWithType : FoodType.GetPrice(int)
fullName : TinyLife.Skills.FoodType.GetPrice(int)
nameWithType.vb : FoodType.GetPrice(Integer)
fullName.vb : TinyLife.Skills.FoodType.GetPrice(Integer)
name.vb : GetPrice(Integer)
spec.csharp :
- uid : TinyLife.Skills.FoodType.GetPrice(System.Int32)
name : GetPrice
- name : (
- uid : System.Int32
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : )
spec.vb :
- uid : TinyLife.Skills.FoodType.GetPrice(System.Int32)
name : GetPrice
- name : (
- uid : System.Int32
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : )
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Skills.FoodType.GetActions*
commentId : Overload:TinyLife.Skills.FoodType.GetActions
name : GetActions
nameWithType : FoodType.GetActions
fullName : TinyLife.Skills.FoodType.GetActions
- uid : System.Collections.Generic.IEnumerable{TinyLife.Actions.ActionVariety}
commentId : T:System.Collections.Generic.IEnumerable{TinyLife.Actions.ActionVariety}
parent : System.Collections.Generic
definition : System.Collections.Generic.IEnumerable`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2022-06-09 20:12:10 +02:00
name : IEnumerable<ActionVariety>
nameWithType : IEnumerable<ActionVariety>
fullName : System.Collections.Generic.IEnumerable<TinyLife.Actions.ActionVariety>
nameWithType.vb : IEnumerable(Of ActionVariety)
fullName.vb : System.Collections.Generic.IEnumerable(Of TinyLife.Actions.ActionVariety)
name.vb : IEnumerable(Of ActionVariety)
spec.csharp :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2022-06-09 20:12:10 +02:00
- name : <
- uid : TinyLife.Actions.ActionVariety
name : ActionVariety
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
2022-06-09 20:12:10 +02:00
- uid : TinyLife.Actions.ActionVariety
name : ActionVariety
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.Types
commentId : F:TinyLife.Skills.FoodType.Types
2023-03-30 18:07:55 +02:00
name : Types
nameWithType : FoodType.Types
fullName : TinyLife.Skills.FoodType.Types
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Skills.FoodType.GetAllContainers*
commentId : Overload:TinyLife.Skills.FoodType.GetAllContainers
name : GetAllContainers
nameWithType : FoodType.GetAllContainers
fullName : TinyLife.Skills.FoodType.GetAllContainers
- uid : TinyLife.Objects.FurnitureType[]
isExternal : true
name : FurnitureType[]
nameWithType : FurnitureType[]
fullName : TinyLife.Objects.FurnitureType[]
nameWithType.vb : FurnitureType()
fullName.vb : TinyLife.Objects.FurnitureType()
name.vb : FurnitureType()
spec.csharp :
- uid : TinyLife.Objects.FurnitureType
name : FurnitureType
2023-03-30 18:07:55 +02:00
- name : '['
- name : ']'
2021-08-04 06:51:12 +02:00
spec.vb :
- uid : TinyLife.Objects.FurnitureType
name : FurnitureType
2023-03-30 18:07:55 +02:00
- name : (
- name : )