2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Actions.ActionVariety
commentId : T:TinyLife.Actions.ActionVariety
id : ActionVariety
parent : TinyLife.Actions
children :
2022-05-24 13:36:05 +02:00
- TinyLife.Actions.ActionVariety.#ctor(System.Object)
- TinyLife.Actions.ActionVariety.#ctor(System.String,System.Func{TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Collections.Generic.IEnumerable{System.Object}})
- TinyLife.Actions.ActionVariety.#ctor(System.String,System.Object[])
- TinyLife.Actions.ActionVariety.AddedConstructorArguments
2021-08-04 06:51:12 +02:00
- TinyLife.Actions.ActionVariety.CanBeExecuted(TinyLife.Actions.ActionInfo,System.Boolean)
- TinyLife.Actions.ActionVariety.CanExecute
- TinyLife.Actions.ActionVariety.CustomLayout
- TinyLife.Actions.ActionVariety.Description
- TinyLife.Actions.ActionVariety.DisplayName
2023-04-26 21:12:41 +02:00
- TinyLife.Actions.ActionVariety.FreePeople(TinyLife.Actions.ActionInfo,System.Boolean,System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Person,System.Boolean},TinyLife.Actions.CanExecuteResult})
2021-08-04 06:51:12 +02:00
- TinyLife.Actions.ActionVariety.GetDisplayName
- TinyLife.Actions.ActionVariety.GetPassivePriority(TinyLife.Objects.Person)
- TinyLife.Actions.ActionVariety.ImageLayout(System.Single,MLEM.Ui.Elements.Element.DrawCallback,MLEM.Misc.Padding)
- TinyLife.Actions.ActionVariety.Name
- TinyLife.Actions.ActionVariety.PassivePriority
2021-08-30 20:44:32 +02:00
- TinyLife.Actions.ActionVariety.PortraitLayout(TinyLife.Objects.Person)
2022-07-28 14:58:38 +02:00
- TinyLife.Actions.ActionVariety.StoredFurniture(System.Collections.Generic.IEnumerable{TinyLife.Objects.Furniture},System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Furniture,System.Boolean},TinyLife.Actions.CanExecuteResult})
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
name : ActionVariety
nameWithType : ActionVariety
fullName : TinyLife.Actions.ActionVariety
2022-05-24 13:36:05 +02:00
type : Class
2021-08-04 06:51:12 +02:00
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : ActionVariety
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2022-11-12 13:53:28 +01:00
startLine : 16
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
summary : "\nAn action variety is a modification to a <xref href=\"TinyLife.Actions.ActionType\" data-throw-if-not-resolved=\"false\"></xref> that represents a slightly changed version of the generic action type.\nAction varieties are used, for example, by <xref href=\"TinyLife.Actions.ActionType.PrepareFood\" data-throw-if-not-resolved=\"false\"></xref> to determine the kind of food that should be prepared.\n"
example : [ ]
syntax :
2022-05-24 13:36:05 +02:00
content: 'public class ActionVariety : GenericDataHolder, IGenericDataHolder'
2023-03-30 18:07:55 +02:00
content.vb : Public Class ActionVariety Inherits GenericDataHolder Implements IGenericDataHolder
2022-05-24 13:36:05 +02:00
inheritance :
- System.Object
- MLEM.Misc.GenericDataHolder
2021-08-04 06:51:12 +02:00
implements :
- MLEM.Misc.IGenericDataHolder
inheritedMembers :
2022-05-24 13:36:05 +02:00
- MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
2022-12-20 13:25:03 +01:00
- MLEM.Misc.GenericDataHolder.SetData``1(System.String,{T})
2022-05-24 13:36:05 +02:00
- MLEM.Misc.GenericDataHolder.GetData``1(System.String)
- MLEM.Misc.GenericDataHolder.GetDataKeys
- System.Object.Equals(System.Object)
2021-08-04 06:51:12 +02:00
- System.Object.Equals(System.Object,System.Object)
2022-05-24 13:36:05 +02:00
- System.Object.GetHashCode
2021-08-04 06:51:12 +02:00
- System.Object.GetType
2022-05-24 13:36:05 +02:00
- System.Object.MemberwiseClone
2021-08-04 06:51:12 +02:00
- System.Object.ReferenceEquals(System.Object,System.Object)
2022-05-24 13:36:05 +02:00
- System.Object.ToString
2021-08-04 06:51:12 +02:00
extensionMethods :
- TinyLife.Actions.ActionVariety.TinyLife.Utilities.Extensions.JsonCopy``1
- uid : TinyLife.Actions.ActionVariety.Name
commentId : F:TinyLife.Actions.ActionVariety.Name
id : Name
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
name : Name
nameWithType : ActionVariety.Name
fullName : TinyLife.Actions.ActionVariety.Name
type : Field
source :
remote :
path : TinyLife/Actions/ActionVariety.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/Actions/ActionVariety.cs
2022-11-12 13:53:28 +01:00
startLine : 21
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
summary : "\nThe name of this action variety\n"
example : [ ]
syntax :
content : public string Name
return :
type : System.String
content.vb : Public Name As String
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Actions.ActionVariety.AddedConstructorArguments
commentId : F:TinyLife.Actions.ActionVariety.AddedConstructorArguments
id : AddedConstructorArguments
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
name : AddedConstructorArguments
nameWithType : ActionVariety.AddedConstructorArguments
fullName : TinyLife.Actions.ActionVariety.AddedConstructorArguments
type : Field
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : AddedConstructorArguments
path : ../TinyLife/Actions/ActionVariety.cs
2022-11-12 13:53:28 +01:00
startLine : 26
2022-05-24 13:36:05 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2023-03-30 18:07:55 +02:00
summary : "\nA set of additional arguments passed to the <xref href=\"TinyLife.Actions.Action\" data-throw-if-not-resolved=\"false\"></xref> contructor by this variety.\nThis is used in <xref href=\"TinyLife.Actions.ActionType.Construct%60%601(TinyLife.Actions.ActionInfo%2cTinyLife.Actions.ActionVariety)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
2022-05-24 13:36:05 +02:00
example : [ ]
syntax :
content : public Func<ActionType, ActionInfo, IEnumerable<object>> AddedConstructorArguments
return :
type : System.Func{TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Collections.Generic.IEnumerable{System.Object}}
content.vb : Public AddedConstructorArguments As Func(Of ActionType, ActionInfo, IEnumerable(Of Object))
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.PassivePriority
commentId : F:TinyLife.Actions.ActionVariety.PassivePriority
id : PassivePriority
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
name : PassivePriority
nameWithType : ActionVariety.PassivePriority
fullName : TinyLife.Actions.ActionVariety.PassivePriority
type : Field
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : PassivePriority
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-26 21:12:41 +02:00
startLine : 33
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2023-04-26 21:12:41 +02:00
summary : "\nA function that returns the passive priority of this action variety.\nIf this function is null (which it is by default), <xref href=\"TinyLife.Actions.ActionVariety.GetPassivePriority(TinyLife.Objects.Person)\" data-throw-if-not-resolved=\"false\"></xref> will return 1.\nIf this function returns 0, this variety will not be chosen by the AI.\nThis is an extension of <xref href=\"TinyLife.Actions.ActionType.AiSettings.PassivePriority\" data-throw-if-not-resolved=\"false\"></xref>\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2021-11-23 16:24:04 +01:00
content : public Func<Person, float> PassivePriority
2021-08-04 06:51:12 +02:00
return :
2021-11-23 16:24:04 +01:00
type : System.Func{TinyLife.Objects.Person,System.Single}
content.vb : Public PassivePriority As Func(Of Person, Single)
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.CanExecute
commentId : F:TinyLife.Actions.ActionVariety.CanExecute
id : CanExecute
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
name : CanExecute
nameWithType : ActionVariety.CanExecute
fullName : TinyLife.Actions.ActionVariety.CanExecute
type : Field
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : CanExecute
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-26 21:12:41 +02:00
startLine : 39
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
summary : "\nA function that returns whether or not this action variety can currently be chosen.\nThis is an extension of <xref href=\"TinyLife.Actions.ActionType.TypeSettings.CanExecute\" data-throw-if-not-resolved=\"false\"></xref>.\nTo query this delegate effectively, use <xref href=\"TinyLife.Actions.ActionVariety.CanBeExecuted(TinyLife.Actions.ActionInfo%2cSystem.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example : [ ]
syntax :
content : public ActionType.CanExecuteDelegate CanExecute
return :
type : TinyLife.Actions.ActionType.CanExecuteDelegate
content.vb : Public CanExecute As ActionType.CanExecuteDelegate
- uid : TinyLife.Actions.ActionVariety.DisplayName
commentId : F:TinyLife.Actions.ActionVariety.DisplayName
id : DisplayName
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
name : DisplayName
nameWithType : ActionVariety.DisplayName
fullName : TinyLife.Actions.ActionVariety.DisplayName
type : Field
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : DisplayName
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-26 21:12:41 +02:00
startLine : 44
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
summary : "\nA function that is called to describe this action variety.\nThis is used in the menu that pops up when the underlying <xref href=\"TinyLife.Actions.ActionType\" data-throw-if-not-resolved=\"false\"></xref> is picked.\n"
example : [ ]
syntax :
content : public Func<string> DisplayName
return :
type : System.Func{System.String}
content.vb : Public DisplayName As Func(Of String)
- uid : TinyLife.Actions.ActionVariety.Description
commentId : F:TinyLife.Actions.ActionVariety.Description
id : Description
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
name : Description
nameWithType : ActionVariety.Description
fullName : TinyLife.Actions.ActionVariety.Description
type : Field
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : Description
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-26 21:12:41 +02:00
startLine : 49
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
summary : "\nA function that is called to describe this action variety in more detail.\nThis is used in the menu that pops up when the underlying <xref href=\"TinyLife.Actions.ActionType\" data-throw-if-not-resolved=\"false\"></xref> is picked.\n"
example : [ ]
syntax :
content : public Func<string> Description
return :
type : System.Func{System.String}
content.vb : Public Description As Func(Of String)
- uid : TinyLife.Actions.ActionVariety.CustomLayout
commentId : F:TinyLife.Actions.ActionVariety.CustomLayout
id : CustomLayout
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
name : CustomLayout
nameWithType : ActionVariety.CustomLayout
fullName : TinyLife.Actions.ActionVariety.CustomLayout
type : Field
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : CustomLayout
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-26 21:12:41 +02:00
startLine : 55
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2021-08-30 20:44:32 +02:00
summary : "\nAn action that is invoked when this action variety is added to a play mode ui.\nIf this action is set, the <xref href=\"MLEM.Ui.Elements.Button\" data-throw-if-not-resolved=\"false\"></xref> that is passed can be modified to look different based on this variety.\nPredefined custom layouts such as <xref href=\"TinyLife.Actions.ActionVariety.ImageLayout(System.Single%2cMLEM.Ui.Elements.Element.DrawCallback%2cMLEM.Misc.Padding)\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Actions.ActionVariety.PortraitLayout(TinyLife.Objects.Person)\" data-throw-if-not-resolved=\"false\"></xref> can be found statically in this class.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : public Action<Button> CustomLayout
return :
type : System.Action{MLEM.Ui.Elements.Button}
content.vb : Public CustomLayout As Action(Of Button)
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Actions.ActionVariety.#ctor(System.String,System.Func{TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Collections.Generic.IEnumerable{System.Object}})
commentId : M:TinyLife.Actions.ActionVariety.#ctor(System.String,System.Func{TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Collections.Generic.IEnumerable{System.Object}})
id : '#ctor(System.String,System.Func{TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Collections.Generic.IEnumerable{System.Object}})'
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : ActionVariety(string, Func<ActionType, ActionInfo, IEnumerable<object>>)
nameWithType : ActionVariety.ActionVariety(string, Func<ActionType, ActionInfo, IEnumerable<object>>)
fullName : TinyLife.Actions.ActionVariety.ActionVariety(string, System.Func<TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, System.Collections.Generic.IEnumerable<object>>)
2022-05-24 13:36:05 +02:00
type : Constructor
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : .ctor
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-26 21:12:41 +02:00
startLine : 62
2022-05-24 13:36:05 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
summary : "\nCreates a new action variety with the given settings.\n"
example : [ ]
syntax :
content : public ActionVariety(string name, Func<ActionType, ActionInfo, IEnumerable<object>> addedConstructorArguments)
parameters :
- id : name
type : System.String
description : The name of this action variety.
- id : addedConstructorArguments
type : System.Func{TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Collections.Generic.IEnumerable{System.Object}}
description : A set of added constructor arugments that are passed to the <xref href="TinyLife.Actions.Action" data-throw-if-not-resolved="false"></xref>.
content.vb : Public Sub New(name As String, addedConstructorArguments As Func(Of ActionType, ActionInfo, IEnumerable(Of Object)))
overload : TinyLife.Actions.ActionVariety.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : ActionVariety.New(String, Func(Of ActionType, ActionInfo, IEnumerable(Of Object)))
fullName.vb : TinyLife.Actions.ActionVariety.New(String, System.Func(Of TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, System.Collections.Generic.IEnumerable(Of Object)))
name.vb : New(String, Func(Of ActionType, ActionInfo, IEnumerable(Of Object)))
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Actions.ActionVariety.#ctor(System.String,System.Object[])
commentId : M:TinyLife.Actions.ActionVariety.#ctor(System.String,System.Object[])
id : '#ctor(System.String,System.Object[])'
2021-08-04 06:51:12 +02:00
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : ActionVariety(string, params object[])
nameWithType : ActionVariety.ActionVariety(string, params object[])
fullName : TinyLife.Actions.ActionVariety.ActionVariety(string, params object[])
2021-08-04 06:51:12 +02:00
type : Constructor
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : .ctor
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-26 21:12:41 +02:00
startLine : 72
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2022-05-24 13:36:05 +02:00
summary : "\nCreates a new action variety with the given settings.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2022-05-24 13:36:05 +02:00
content : public ActionVariety(string name, params object[] addedConstructorArguments)
2021-08-04 06:51:12 +02:00
parameters :
- id : name
type : System.String
2022-05-24 13:36:05 +02:00
description : The name of this action variety.
- id : addedConstructorArguments
type : System.Object[]
description : A set of added constructor arugments that are passed to the <xref href="TinyLife.Actions.Action" data-throw-if-not-resolved="false"></xref>.
content.vb : Public Sub New(name As String, ParamArray addedConstructorArguments As Object())
overload : TinyLife.Actions.ActionVariety.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : ActionVariety.New(String, ParamArray Object())
fullName.vb : TinyLife.Actions.ActionVariety.New(String, ParamArray Object())
name.vb : New(String, ParamArray Object())
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Actions.ActionVariety.#ctor(System.Object)
commentId : M:TinyLife.Actions.ActionVariety.#ctor(System.Object)
id : '#ctor(System.Object)'
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : ActionVariety(object)
nameWithType : ActionVariety.ActionVariety(object)
fullName : TinyLife.Actions.ActionVariety.ActionVariety(object)
2022-05-24 13:36:05 +02:00
type : Constructor
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : .ctor
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-26 21:12:41 +02:00
startLine : 78
2022-05-24 13:36:05 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
summary : "\nCreates a new action variety with the given settings.\n"
example : [ ]
syntax :
content : public ActionVariety(object addedConstructorArgument)
parameters :
- id : addedConstructorArgument
type : System.Object
description : An added constructor arugment that is passed to the <xref href="TinyLife.Actions.Action" data-throw-if-not-resolved="false"></xref>.
content.vb : Public Sub New(addedConstructorArgument As Object)
2021-08-04 06:51:12 +02:00
overload : TinyLife.Actions.ActionVariety.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : ActionVariety.New(Object)
fullName.vb : TinyLife.Actions.ActionVariety.New(Object)
name.vb : New(Object)
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.GetDisplayName
commentId : M:TinyLife.Actions.ActionVariety.GetDisplayName
id : GetDisplayName
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
name : GetDisplayName()
nameWithType : ActionVariety.GetDisplayName()
fullName : TinyLife.Actions.ActionVariety.GetDisplayName()
type : Method
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : GetDisplayName
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-26 21:12:41 +02:00
startLine : 84
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
summary : "\nReturns the display name of this action varietiy, which is either the value returned by <xref href=\"TinyLife.Actions.ActionVariety.DisplayName\" data-throw-if-not-resolved=\"false\"></xref> or a default localized display name\n"
example : [ ]
syntax :
content : public string GetDisplayName()
return :
type : System.String
description : This action variety's display name
2023-03-30 18:07:55 +02:00
content.vb : Public Function GetDisplayName() As String
2021-08-04 06:51:12 +02:00
overload : TinyLife.Actions.ActionVariety.GetDisplayName*
- uid : TinyLife.Actions.ActionVariety.CanBeExecuted(TinyLife.Actions.ActionInfo,System.Boolean)
commentId : M:TinyLife.Actions.ActionVariety.CanBeExecuted(TinyLife.Actions.ActionInfo,System.Boolean)
id : CanBeExecuted(TinyLife.Actions.ActionInfo,System.Boolean)
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : CanBeExecuted(ActionInfo, bool)
nameWithType : ActionVariety.CanBeExecuted(ActionInfo, bool)
fullName : TinyLife.Actions.ActionVariety.CanBeExecuted(TinyLife.Actions.ActionInfo, bool)
2021-08-04 06:51:12 +02:00
type : Method
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : CanBeExecuted
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-26 21:12:41 +02:00
startLine : 95
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2023-03-30 18:07:55 +02:00
summary : "\nReturns whether this action variety can be executed using the provided <xref href=\"TinyLife.Actions.ActionInfo\" data-throw-if-not-resolved=\"false\"></xref>.\nThis returns the result of <xref href=\"TinyLife.Actions.ActionVariety.CanExecute\" data-throw-if-not-resolved=\"false\"></xref>, or <xref href=\"TinyLife.Actions.CanExecuteResult.Valid\" data-throw-if-not-resolved=\"false\"></xref> if it is null.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2022-05-24 13:36:05 +02:00
content : public CanExecuteResult CanBeExecuted(ActionInfo info, bool automatic)
2021-08-04 06:51:12 +02:00
parameters :
- id : info
type : TinyLife.Actions.ActionInfo
description : The action info
- id : automatic
type : System.Boolean
description : Whether the action is automatic
return :
2022-05-24 13:36:05 +02:00
type : TinyLife.Actions.CanExecuteResult
2021-08-04 06:51:12 +02:00
description : Whether this variety can currently be executed
2022-05-24 13:36:05 +02:00
content.vb : Public Function CanBeExecuted(info As ActionInfo, automatic As Boolean) As CanExecuteResult
2021-08-04 06:51:12 +02:00
overload : TinyLife.Actions.ActionVariety.CanBeExecuted*
2023-03-30 18:07:55 +02:00
nameWithType.vb : ActionVariety.CanBeExecuted(ActionInfo, Boolean)
fullName.vb : TinyLife.Actions.ActionVariety.CanBeExecuted(TinyLife.Actions.ActionInfo, Boolean)
name.vb : CanBeExecuted(ActionInfo, Boolean)
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.GetPassivePriority(TinyLife.Objects.Person)
commentId : M:TinyLife.Actions.ActionVariety.GetPassivePriority(TinyLife.Objects.Person)
id : GetPassivePriority(TinyLife.Objects.Person)
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
name : GetPassivePriority(Person)
nameWithType : ActionVariety.GetPassivePriority(Person)
fullName : TinyLife.Actions.ActionVariety.GetPassivePriority(TinyLife.Objects.Person)
type : Method
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : GetPassivePriority
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-26 21:12:41 +02:00
startLine : 111
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2023-04-26 21:12:41 +02:00
summary : "\nReturns the passive priority of this action variety, which is based on <xref href=\"TinyLife.Actions.ActionVariety.PassivePriority\" data-throw-if-not-resolved=\"false\"></xref>.\n"
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2021-11-23 16:24:04 +01:00
content : public float GetPassivePriority(Person person)
2021-08-04 06:51:12 +02:00
parameters :
- id : person
type : TinyLife.Objects.Person
description : The person for whom to return the passive priority
return :
2021-11-23 16:24:04 +01:00
type : System.Single
2021-08-04 06:51:12 +02:00
description : The passive priority of this action variety
2021-11-23 16:24:04 +01:00
content.vb : Public Function GetPassivePriority(person As Person) As Single
2021-08-04 06:51:12 +02:00
overload : TinyLife.Actions.ActionVariety.GetPassivePriority*
2023-04-26 21:12:41 +02:00
- uid : TinyLife.Actions.ActionVariety.FreePeople(TinyLife.Actions.ActionInfo,System.Boolean,System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Person,System.Boolean},TinyLife.Actions.CanExecuteResult})
commentId : M:TinyLife.Actions.ActionVariety.FreePeople(TinyLife.Actions.ActionInfo,System.Boolean,System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Person,System.Boolean},TinyLife.Actions.CanExecuteResult})
id : FreePeople(TinyLife.Actions.ActionInfo,System.Boolean,System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Person,System.Boolean},TinyLife.Actions.CanExecuteResult})
2022-01-08 12:41:09 +01:00
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
2023-04-26 21:12:41 +02:00
name : FreePeople(ActionInfo, bool, Func<(ActionInfo Info, Person Other, bool Automatic), CanExecuteResult>)
nameWithType : ActionVariety.FreePeople(ActionInfo, bool, Func<(ActionInfo Info, Person Other, bool Automatic), CanExecuteResult>)
fullName : TinyLife.Actions.ActionVariety.FreePeople(TinyLife.Actions.ActionInfo, bool, System.Func<(TinyLife.Actions.ActionInfo Info, TinyLife.Objects.Person Other, bool Automatic), TinyLife.Actions.CanExecuteResult>)
2022-01-08 12:41:09 +01:00
type : Method
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : FreePeople
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-27 18:53:16 +02:00
startLine : 125
2022-01-08 12:41:09 +01:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2022-05-24 13:36:05 +02:00
summary : "\nA helper method that returns a set of <xref href=\"TinyLife.Actions.ActionVariety\" data-throw-if-not-resolved=\"false\"></xref> instances that represents a set of people that are currently around and able to be interacted with.\nEach action variety contains passes the <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> instance in question as an <xref href=\"TinyLife.Actions.ActionVariety.AddedConstructorArguments\" data-throw-if-not-resolved=\"false\"></xref> rather than passing itself.\nThis method is used for actions like <xref href=\"TinyLife.Actions.ActionType.AskToTaste\" data-throw-if-not-resolved=\"false\"></xref>, where a person can be selected to interact with from a variety menu.\n"
2022-03-09 16:13:05 +01:00
example : [ ]
2022-01-08 12:41:09 +01:00
syntax :
2023-04-26 21:12:41 +02:00
content : public static IEnumerable<ActionVariety> FreePeople(ActionInfo info, bool automatic, Func<(ActionInfo Info, Person Other, bool Automatic), CanExecuteResult> canExecute = null)
2022-01-08 12:41:09 +01:00
parameters :
- id : info
type : TinyLife.Actions.ActionInfo
2022-03-09 16:13:05 +01:00
description : The action info.
2023-04-26 21:12:41 +02:00
- id : automatic
type : System.Boolean
2023-04-27 18:53:16 +02:00
description : Whether the action variety was selected automatically.
2022-07-28 14:58:38 +02:00
- id : canExecute
type : System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Person,System.Boolean},TinyLife.Actions.CanExecuteResult}
description : A <xref href="TinyLife.Actions.ActionType.CanExecuteDelegate" data-throw-if-not-resolved="false"></xref>-esque function that determines whether a given person should be included.
2022-01-08 12:41:09 +01:00
return :
type : System.Collections.Generic.IEnumerable{TinyLife.Actions.ActionVariety}
2022-03-09 16:13:05 +01:00
description : A set of action varieties that represents the free people around.
2023-04-26 21:12:41 +02:00
content.vb : Public Shared Function FreePeople(info As ActionInfo, automatic As Boolean, canExecute As Func(Of (Info As ActionInfo, Other As Person, Automatic As Boolean), CanExecuteResult) = Nothing) As IEnumerable(Of ActionVariety)
2022-01-08 12:41:09 +01:00
overload : TinyLife.Actions.ActionVariety.FreePeople*
2023-04-26 21:12:41 +02:00
nameWithType.vb : ActionVariety.FreePeople(ActionInfo, Boolean, Func(Of (Info As ActionInfo, Other As Person, Automatic As Boolean), CanExecuteResult))
fullName.vb : TinyLife.Actions.ActionVariety.FreePeople(TinyLife.Actions.ActionInfo, Boolean, System.Func(Of (Info As TinyLife.Actions.ActionInfo, Other As TinyLife.Objects.Person, Automatic As Boolean), TinyLife.Actions.CanExecuteResult))
name.vb : FreePeople(ActionInfo, Boolean, Func(Of (Info As ActionInfo, Other As Person, Automatic As Boolean), CanExecuteResult))
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Actions.ActionVariety.StoredFurniture(System.Collections.Generic.IEnumerable{TinyLife.Objects.Furniture},System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Furniture,System.Boolean},TinyLife.Actions.CanExecuteResult})
commentId : M:TinyLife.Actions.ActionVariety.StoredFurniture(System.Collections.Generic.IEnumerable{TinyLife.Objects.Furniture},System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Furniture,System.Boolean},TinyLife.Actions.CanExecuteResult})
id : StoredFurniture(System.Collections.Generic.IEnumerable{TinyLife.Objects.Furniture},System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Furniture,System.Boolean},TinyLife.Actions.CanExecuteResult})
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : StoredFurniture(IEnumerable<Furniture>, Func<(ActionInfo Info, Furniture Furniture, bool Automatic), CanExecuteResult>)
nameWithType : ActionVariety.StoredFurniture(IEnumerable<Furniture>, Func<(ActionInfo Info, Furniture Furniture, bool Automatic), CanExecuteResult>)
fullName : TinyLife.Actions.ActionVariety.StoredFurniture(System.Collections.Generic.IEnumerable<TinyLife.Objects.Furniture>, System.Func<(TinyLife.Actions.ActionInfo Info, TinyLife.Objects.Furniture Furniture, bool Automatic), TinyLife.Actions.CanExecuteResult>)
2022-07-28 14:58:38 +02:00
type : Method
source :
remote :
path : TinyLife/Actions/ActionVariety.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-07-28 14:58:38 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : StoredFurniture
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-27 18:53:16 +02:00
startLine : 143
2022-07-28 14:58:38 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
summary : "\nA helper method that returns a set of <xref href=\"TinyLife.Actions.ActionVariety\" data-throw-if-not-resolved=\"false\"></xref> instances that represents a set of furniture that is currently stored in an object.\nEach action variety contains passes the <xref href=\"TinyLife.Objects.Furniture\" data-throw-if-not-resolved=\"false\"></xref> instance in question as an <xref href=\"TinyLife.Actions.ActionVariety.AddedConstructorArguments\" data-throw-if-not-resolved=\"false\"></xref> rather than passing itself.\n"
example : [ ]
syntax :
content : public static IEnumerable<ActionVariety> StoredFurniture(IEnumerable<Furniture> furniture, Func<(ActionInfo Info, Furniture Furniture, bool Automatic), CanExecuteResult> canExecute = null)
parameters :
- id : furniture
type : System.Collections.Generic.IEnumerable{TinyLife.Objects.Furniture}
2022-09-05 14:19:42 +02:00
description : The furniture stored. If this is null, <xref href="System.Linq.Enumerable.Empty%60%601" data-throw-if-not-resolved="false"></xref> is returned.
2022-07-28 14:58:38 +02:00
- id : canExecute
type : System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Furniture,System.Boolean},TinyLife.Actions.CanExecuteResult}
description : A <xref href="TinyLife.Actions.ActionType.CanExecuteDelegate" data-throw-if-not-resolved="false"></xref>-esque function that determines whether a furniture item should be included.
return :
type : System.Collections.Generic.IEnumerable{TinyLife.Actions.ActionVariety}
description : A set of action varieties that represents the furniture stored in an object.
2023-03-30 18:07:55 +02:00
content.vb : Public Shared Function StoredFurniture(furniture As IEnumerable(Of Furniture), canExecute As Func(Of (Info As ActionInfo, Furniture As Furniture, Automatic As Boolean), CanExecuteResult) = Nothing) As IEnumerable(Of ActionVariety)
2022-07-28 14:58:38 +02:00
overload : TinyLife.Actions.ActionVariety.StoredFurniture*
2023-03-30 18:07:55 +02:00
nameWithType.vb : ActionVariety.StoredFurniture(IEnumerable(Of Furniture), Func(Of (Info As ActionInfo, Furniture As Furniture, Automatic As Boolean), CanExecuteResult))
fullName.vb : TinyLife.Actions.ActionVariety.StoredFurniture(System.Collections.Generic.IEnumerable(Of TinyLife.Objects.Furniture), System.Func(Of (Info As TinyLife.Actions.ActionInfo, Furniture As TinyLife.Objects.Furniture, Automatic As Boolean), TinyLife.Actions.CanExecuteResult))
name.vb : StoredFurniture(IEnumerable(Of Furniture), Func(Of (Info As ActionInfo, Furniture As Furniture, Automatic As Boolean), CanExecuteResult))
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.ImageLayout(System.Single,MLEM.Ui.Elements.Element.DrawCallback,MLEM.Misc.Padding)
commentId : M:TinyLife.Actions.ActionVariety.ImageLayout(System.Single,MLEM.Ui.Elements.Element.DrawCallback,MLEM.Misc.Padding)
id : ImageLayout(System.Single,MLEM.Ui.Elements.Element.DrawCallback,MLEM.Misc.Padding)
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : ImageLayout(float, DrawCallback, Padding)
nameWithType : ActionVariety.ImageLayout(float, Element.DrawCallback, Padding)
fullName : TinyLife.Actions.ActionVariety.ImageLayout(float, MLEM.Ui.Elements.Element.DrawCallback, MLEM.Misc.Padding)
2021-08-04 06:51:12 +02:00
type : Method
source :
remote :
path : TinyLife/Actions/ActionVariety.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 : ImageLayout
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-27 18:53:16 +02:00
startLine : 164
2021-08-04 06:51:12 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
summary : "\nA helper method intended to be used with <xref href=\"TinyLife.Actions.ActionVariety.CustomLayout\" data-throw-if-not-resolved=\"false\"></xref> that creates a layout with large, rectangular variety buttons that can draw something on themselves.\nThis layout is used by actions like <xref href=\"TinyLife.Actions.ActionType.GetIngredientsSingle\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Actions.ActionType.ChangeOutfit\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public static Action<Button> ImageLayout(float height, Element.DrawCallback draw, Padding padding = default)
2021-08-04 06:51:12 +02:00
parameters :
- id : height
type : System.Single
description : The height that each button should have
- id : draw
type : MLEM.Ui.Elements.Element.DrawCallback
description : A <xref href="MLEM.Ui.Elements.Element.DrawCallback" data-throw-if-not-resolved="false"></xref> that can be used to draw onto the button
- id : padding
type : MLEM.Misc.Padding
description : The padding that the group that the image is displayed on should have, defaults to no padding
return :
type : System.Action{MLEM.Ui.Elements.Button}
description : An action that can be fed into <xref href="TinyLife.Actions.ActionVariety.CustomLayout" data-throw-if-not-resolved="false"></xref>
content.vb : Public Shared Function ImageLayout(height As Single, draw As Element.DrawCallback, padding As Padding = Nothing) As Action(Of Button)
overload : TinyLife.Actions.ActionVariety.ImageLayout*
2023-03-30 18:07:55 +02:00
nameWithType.vb : ActionVariety.ImageLayout(Single, Element.DrawCallback, Padding)
fullName.vb : TinyLife.Actions.ActionVariety.ImageLayout(Single, MLEM.Ui.Elements.Element.DrawCallback, MLEM.Misc.Padding)
name.vb : ImageLayout(Single, DrawCallback, Padding)
2021-08-30 20:44:32 +02:00
- uid : TinyLife.Actions.ActionVariety.PortraitLayout(TinyLife.Objects.Person)
commentId : M:TinyLife.Actions.ActionVariety.PortraitLayout(TinyLife.Objects.Person)
id : PortraitLayout(TinyLife.Objects.Person)
parent : TinyLife.Actions.ActionVariety
langs :
- csharp
- vb
name : PortraitLayout(Person)
nameWithType : ActionVariety.PortraitLayout(Person)
fullName : TinyLife.Actions.ActionVariety.PortraitLayout(TinyLife.Objects.Person)
type : Method
source :
remote :
path : TinyLife/Actions/ActionVariety.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-30 20:44:32 +02:00
id : PortraitLayout
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/ActionVariety.cs
2023-04-27 18:53:16 +02:00
startLine : 183
2021-08-30 20:44:32 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2022-07-04 16:50:43 +02:00
summary : "\nA helper method intended to be used with <xref href=\"TinyLife.Actions.ActionVariety.CustomLayout\" data-throw-if-not-resolved=\"false\"></xref> that creates a layout that includes the <xref href=\"TinyLife.Objects.Person.Portrait\" data-throw-if-not-resolved=\"false\"></xref> of the given <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> in the center bottom.\n"
2021-08-30 20:44:32 +02:00
example : [ ]
syntax :
content : public static Action<Button> PortraitLayout(Person person)
parameters :
- id : person
type : TinyLife.Objects.Person
description : The person to create the portrait layout for
return :
type : System.Action{MLEM.Ui.Elements.Button}
description : An action that can be fed into <xref href="TinyLife.Actions.ActionVariety.CustomLayout" data-throw-if-not-resolved="false"></xref>
content.vb : Public Shared Function PortraitLayout(person As Person) As Action(Of Button)
overload : TinyLife.Actions.ActionVariety.PortraitLayout*
2021-08-04 06:51:12 +02:00
references :
- uid : TinyLife.Actions.ActionType
commentId : T:TinyLife.Actions.ActionType
parent : TinyLife.Actions
name : ActionType
nameWithType : ActionType
fullName : TinyLife.Actions.ActionType
- uid : TinyLife.Actions.ActionType.PrepareFood
commentId : F:TinyLife.Actions.ActionType.PrepareFood
2023-03-30 18:07:55 +02:00
name : PrepareFood
nameWithType : ActionType.PrepareFood
fullName : TinyLife.Actions.ActionType.PrepareFood
2021-08-04 06:51:12 +02: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-05-24 13:36:05 +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
2022-05-24 13:36:05 +02:00
- uid : MLEM.Misc.GenericDataHolder
commentId : T:MLEM.Misc.GenericDataHolder
parent : MLEM.Misc
isExternal : true
name : GenericDataHolder
nameWithType : GenericDataHolder
fullName : MLEM.Misc.GenericDataHolder
2021-08-04 06:51:12 +02:00
- uid : MLEM.Misc.IGenericDataHolder
commentId : T:MLEM.Misc.IGenericDataHolder
parent : MLEM.Misc
isExternal : true
name : IGenericDataHolder
nameWithType : IGenericDataHolder
fullName : MLEM.Misc.IGenericDataHolder
2022-05-24 13:36:05 +02:00
- uid : MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
commentId : M:MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
parent : MLEM.Misc.GenericDataHolder
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 : SetData(string, object)
nameWithType : GenericDataHolder.SetData(string, object)
fullName : MLEM.Misc.GenericDataHolder.SetData(string, object)
nameWithType.vb : GenericDataHolder.SetData(String, Object)
fullName.vb : MLEM.Misc.GenericDataHolder.SetData(String, Object)
name.vb : SetData(String, Object)
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-05-24 13:36:05 +02:00
- uid : MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
name : SetData
2021-08-04 06:51:12 +02:00
isExternal : true
- name : (
2022-05-24 13:36:05 +02:00
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
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.string
- 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 :
2022-05-24 13:36:05 +02:00
- uid : MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
name : SetData
2021-08-04 06:51:12 +02:00
isExternal : true
- name : (
2022-05-24 13:36:05 +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 : 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 : )
2022-12-20 13:25:03 +01:00
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,{T})
commentId : M:MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
parent : MLEM.Misc.GenericDataHolder
definition : MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : SetData<T>(string, T)
nameWithType : GenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Misc.GenericDataHolder.SetData<T>(string, T)
2022-12-20 13:25:03 +01:00
nameWithType.vb : GenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Misc.GenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01: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 : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2022-05-24 13:36:05 +02:00
- uid : MLEM.Misc.GenericDataHolder.GetData``1(System.String)
commentId : M:MLEM.Misc.GenericDataHolder.GetData``1(System.String)
parent : MLEM.Misc.GenericDataHolder
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 : GetData<T>(string)
nameWithType : GenericDataHolder.GetData<T>(string)
fullName : MLEM.Misc.GenericDataHolder.GetData<T>(string)
2022-05-24 13:36:05 +02:00
nameWithType.vb : GenericDataHolder.GetData(Of T)(String)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Misc.GenericDataHolder.GetData(Of T)(String)
2022-05-24 13:36:05 +02:00
name.vb : GetData(Of T)(String)
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-05-24 13:36:05 +02:00
- uid : MLEM.Misc.GenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
2022-05-24 13:36:05 +02:00
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
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.string
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2022-05-24 13:36:05 +02:00
- uid : MLEM.Misc.GenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-08-04 06:51:12 +02:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-05-24 13:36:05 +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 : )
2022-05-24 13:36:05 +02:00
- uid : MLEM.Misc.GenericDataHolder.GetDataKeys
commentId : M:MLEM.Misc.GenericDataHolder.GetDataKeys
parent : MLEM.Misc.GenericDataHolder
2021-08-04 06:51:12 +02:00
isExternal : true
2022-05-24 13:36:05 +02:00
name : GetDataKeys()
nameWithType : GenericDataHolder.GetDataKeys()
fullName : MLEM.Misc.GenericDataHolder.GetDataKeys()
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-05-24 13:36:05 +02:00
- uid : MLEM.Misc.GenericDataHolder.GetDataKeys
name : GetDataKeys
2021-08-04 06:51:12 +02:00
isExternal : true
- name : (
- name : )
spec.vb :
2022-05-24 13:36:05 +02:00
- uid : MLEM.Misc.GenericDataHolder.GetDataKeys
name : GetDataKeys
isExternal : true
- name : (
- name : )
- 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)
2022-05-24 13:36:05 +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)
2022-05-24 13:36:05 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
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.object
2022-05-24 13:36:05 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
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.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name : (
2022-05-24 13:36:05 +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.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 : )
2022-05-24 13:36:05 +02:00
- 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
2022-05-24 13:36:05 +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()
2022-05-24 13:36:05 +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
2022-05-24 13:36:05 +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
2022-05-24 13:36:05 +02:00
- name : (
- name : )
2021-08-04 06:51:12 +02:00
- 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 : )
2022-05-24 13:36:05 +02:00
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
2021-08-04 06:51:12 +02:00
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-05-24 13:36:05 +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()
2022-05-24 13:36:05 +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
2022-05-24 13:36:05 +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
2022-05-24 13:36:05 +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 : )
2022-05-24 13:36:05 +02:00
- 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
2022-05-24 13:36:05 +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()
2022-05-24 13:36:05 +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
2022-05-24 13:36:05 +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
2022-05-24 13:36:05 +02:00
- name : (
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.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<ActionVariety>(ActionVariety)
nameWithType : Extensions.JsonCopy<ActionVariety>(ActionVariety)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.ActionVariety>(TinyLife.Actions.ActionVariety)
nameWithType.vb : Extensions.JsonCopy(Of ActionVariety)(ActionVariety)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.ActionVariety)(TinyLife.Actions.ActionVariety)
name.vb : JsonCopy(Of ActionVariety)(ActionVariety)
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.Actions.ActionVariety)
name : JsonCopy
- name : <
- uid : TinyLife.Actions.ActionVariety
name : ActionVariety
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.ActionVariety
name : ActionVariety
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.Actions.ActionVariety)
name : JsonCopy
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- uid : TinyLife.Actions.ActionVariety
name : ActionVariety
- name : )
- name : (
- uid : TinyLife.Actions.ActionVariety
name : ActionVariety
2021-08-04 06:51:12 +02:00
- name : )
2022-05-24 13:36:05 +02:00
- uid : System
commentId : N : System
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
nameWithType : System
fullName : System
2021-08-04 06:51:12 +02:00
- uid : MLEM.Misc
commentId : N : MLEM.Misc
isExternal : true
name : MLEM.Misc
nameWithType : MLEM.Misc
fullName : MLEM.Misc
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Misc
name : Misc
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Misc
name : Misc
isExternal : true
2022-12-20 13:25:03 +01:00
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
commentId : M:MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : SetData<T>(string, T)
nameWithType : GenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Misc.GenericDataHolder.SetData<T>(string, T)
2022-12-20 13:25:03 +01:00
nameWithType.vb : GenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Misc.GenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01: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 : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
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 : 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
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Actions.Action
commentId : T:TinyLife.Actions.Action
parent : TinyLife.Actions
name : Action
nameWithType : Action
fullName : TinyLife.Actions.Action
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.ActionType.Construct``1(TinyLife.Actions.ActionInfo,TinyLife.Actions.ActionVariety)
commentId : M:TinyLife.Actions.ActionType.Construct``1(TinyLife.Actions.ActionInfo,TinyLife.Actions.ActionVariety)
name : Construct<T>(ActionInfo, ActionVariety)
nameWithType : ActionType.Construct<T>(ActionInfo, ActionVariety)
fullName : TinyLife.Actions.ActionType.Construct<T>(TinyLife.Actions.ActionInfo, TinyLife.Actions.ActionVariety)
nameWithType.vb : ActionType.Construct(Of T)(ActionInfo, ActionVariety)
fullName.vb : TinyLife.Actions.ActionType.Construct(Of T)(TinyLife.Actions.ActionInfo, TinyLife.Actions.ActionVariety)
name.vb : Construct(Of T)(ActionInfo, ActionVariety)
spec.csharp :
- uid : TinyLife.Actions.ActionType.Construct``1(TinyLife.Actions.ActionInfo,TinyLife.Actions.ActionVariety)
name : Construct
- name : <
- name : T
- name : '>'
- name : (
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
- name : ','
- name : " "
- uid : TinyLife.Actions.ActionVariety
name : ActionVariety
- name : )
spec.vb :
- uid : TinyLife.Actions.ActionType.Construct``1(TinyLife.Actions.ActionInfo,TinyLife.Actions.ActionVariety)
name : Construct
- name : (
- name : Of
- name : " "
- name : T
- name : )
- name : (
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
- name : ','
- name : " "
- uid : TinyLife.Actions.ActionVariety
name : ActionVariety
- name : )
2022-05-24 13:36:05 +02:00
- uid : System.Func{TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Collections.Generic.IEnumerable{System.Object}}
commentId : T:System.Func{TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Collections.Generic.IEnumerable{System.Object}}
parent : System
definition : System.Func`3
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-3
name : Func<ActionType, ActionInfo, IEnumerable<object>>
nameWithType : Func<ActionType, ActionInfo, IEnumerable<object>>
fullName : System.Func<TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, System.Collections.Generic.IEnumerable<object>>
2022-05-24 13:36:05 +02:00
nameWithType.vb : Func(Of ActionType, ActionInfo, IEnumerable(Of Object))
2023-03-30 18:07:55 +02:00
fullName.vb : System.Func(Of TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, System.Collections.Generic.IEnumerable(Of Object))
2022-05-24 13:36:05 +02:00
name.vb : Func(Of ActionType, ActionInfo, IEnumerable(Of Object))
spec.csharp :
- uid : System.Func`3
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-3
2022-05-24 13:36:05 +02:00
- name : <
- uid : TinyLife.Actions.ActionType
name : ActionType
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-05-24 13:36:05 +02:00
- 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-05-24 13:36:05 +02:00
- name : <
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
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.object
2022-05-24 13:36:05 +02:00
- name : '>'
- name : '>'
spec.vb :
- uid : System.Func`3
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-3
- name : (
- name : Of
- name : " "
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Actions.ActionType
name : ActionType
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-05-24 13:36:05 +02:00
- 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-05-24 13:36:05 +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
2022-05-24 13:36:05 +02:00
- name : )
- name : )
- uid : System.Func`3
commentId : T:System.Func`3
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-3
2022-05-24 13:36:05 +02:00
name : Func<T1, T2, TResult>
nameWithType : Func<T1, T2, TResult>
fullName : System.Func<T1, T2, TResult>
nameWithType.vb : Func(Of T1, T2, TResult)
fullName.vb : System.Func(Of T1, T2, TResult)
name.vb : Func(Of T1, T2, TResult)
spec.csharp :
- uid : System.Func`3
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-3
2022-05-24 13:36:05 +02:00
- name : <
- name : T1
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-05-24 13:36:05 +02:00
- name : T2
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-05-24 13:36:05 +02:00
- name : TResult
- name : '>'
spec.vb :
- uid : System.Func`3
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-3
- name : (
- name : Of
- name : " "
2022-05-24 13:36:05 +02:00
- name : T1
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-05-24 13:36:05 +02:00
- name : T2
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-05-24 13:36:05 +02:00
- name : TResult
- name : )
2021-11-23 16:24:04 +01:00
- uid : TinyLife.Actions.ActionVariety.GetPassivePriority(TinyLife.Objects.Person)
commentId : M:TinyLife.Actions.ActionVariety.GetPassivePriority(TinyLife.Objects.Person)
2023-03-30 18:07:55 +02:00
name : GetPassivePriority(Person)
nameWithType : ActionVariety.GetPassivePriority(Person)
fullName : TinyLife.Actions.ActionVariety.GetPassivePriority(TinyLife.Objects.Person)
spec.csharp :
- uid : TinyLife.Actions.ActionVariety.GetPassivePriority(TinyLife.Objects.Person)
name : GetPassivePriority
- name : (
- uid : TinyLife.Objects.Person
name : Person
- name : )
spec.vb :
- uid : TinyLife.Actions.ActionVariety.GetPassivePriority(TinyLife.Objects.Person)
name : GetPassivePriority
- name : (
- uid : TinyLife.Objects.Person
name : Person
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionType.AiSettings.PassivePriority
commentId : F:TinyLife.Actions.ActionType.AiSettings.PassivePriority
2023-03-30 18:07:55 +02:00
name : PassivePriority
nameWithType : ActionType.AiSettings.PassivePriority
fullName : TinyLife.Actions.ActionType.AiSettings.PassivePriority
2021-11-23 16:24:04 +01:00
- uid : System.Func{TinyLife.Objects.Person,System.Single}
commentId : T:System.Func{TinyLife.Objects.Person,System.Single}
2021-08-04 06:51:12 +02:00
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, float>
nameWithType : Func<Person, float>
fullName : System.Func<TinyLife.Objects.Person, float>
2021-11-23 16:24:04 +01:00
nameWithType.vb : Func(Of Person, Single)
2023-03-30 18:07:55 +02:00
fullName.vb : System.Func(Of TinyLife.Objects.Person, Single)
2021-11-23 16:24:04 +01:00
name.vb : Func(Of Person, Single)
2021-08-04 06:51:12 +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
2021-08-04 06:51:12 +02:00
- name : <
- uid : TinyLife.Objects.Person
name : Person
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-11-23 16:24:04 +01:00
- uid : System.Single
2023-03-30 18:07:55 +02:00
name : float
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
2021-08-04 06:51:12 +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 : " "
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.Person
name : Person
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-11-23 16:24:04 +01:00
- uid : System.Single
name : Single
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
2021-08-04 06:51:12 +02:00
- name : )
- 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
2021-08-04 06:51:12 +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
2021-08-04 06:51:12 +02:00
- name : <
- name : T
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +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 : " "
2021-08-04 06:51:12 +02:00
- name : T
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- name : TResult
- name : )
- uid : TinyLife.Actions.ActionType.TypeSettings.CanExecute
commentId : F:TinyLife.Actions.ActionType.TypeSettings.CanExecute
2023-03-30 18:07:55 +02:00
name : CanExecute
nameWithType : ActionType.TypeSettings.CanExecute
fullName : TinyLife.Actions.ActionType.TypeSettings.CanExecute
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.CanBeExecuted(TinyLife.Actions.ActionInfo,System.Boolean)
commentId : M:TinyLife.Actions.ActionVariety.CanBeExecuted(TinyLife.Actions.ActionInfo,System.Boolean)
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : CanBeExecuted(ActionInfo, bool)
nameWithType : ActionVariety.CanBeExecuted(ActionInfo, bool)
fullName : TinyLife.Actions.ActionVariety.CanBeExecuted(TinyLife.Actions.ActionInfo, bool)
nameWithType.vb : ActionVariety.CanBeExecuted(ActionInfo, Boolean)
fullName.vb : TinyLife.Actions.ActionVariety.CanBeExecuted(TinyLife.Actions.ActionInfo, Boolean)
name.vb : CanBeExecuted(ActionInfo, Boolean)
spec.csharp :
- uid : TinyLife.Actions.ActionVariety.CanBeExecuted(TinyLife.Actions.ActionInfo,System.Boolean)
name : CanBeExecuted
- 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 : )
spec.vb :
- uid : TinyLife.Actions.ActionVariety.CanBeExecuted(TinyLife.Actions.ActionInfo,System.Boolean)
name : CanBeExecuted
- 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 : )
2021-08-04 06:51:12 +02:00
- 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
2021-08-04 06:51:12 +02:00
- uid : System.Func{System.String}
commentId : T:System.Func{System.String}
parent : System
definition : System.Func`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
name : Func<string>
nameWithType : Func<string>
fullName : System.Func<string>
2021-08-04 06:51:12 +02:00
nameWithType.vb : Func(Of String)
2023-03-30 18:07:55 +02:00
fullName.vb : System.Func(Of String)
2021-08-04 06:51:12 +02:00
name.vb : Func(Of String)
spec.csharp :
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
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
2021-08-04 06:51:12 +02:00
- name : '>'
spec.vb :
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
- 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
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Func`1
commentId : T:System.Func`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
2021-08-04 06:51:12 +02:00
name : Func<TResult>
nameWithType : Func<TResult>
fullName : System.Func<TResult>
nameWithType.vb : Func(Of TResult)
fullName.vb : System.Func(Of TResult)
name.vb : Func(Of TResult)
spec.csharp :
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
2021-08-04 06:51:12 +02:00
- name : <
- name : TResult
- name : '>'
spec.vb :
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
- name : (
- name : Of
- name : " "
2021-08-04 06:51:12 +02:00
- name : TResult
- name : )
- uid : MLEM.Ui.Elements.Button
commentId : T:MLEM.Ui.Elements.Button
parent : MLEM.Ui.Elements
isExternal : true
name : Button
nameWithType : Button
fullName : MLEM.Ui.Elements.Button
- uid : TinyLife.Actions.ActionVariety.ImageLayout(System.Single,MLEM.Ui.Elements.Element.DrawCallback,MLEM.Misc.Padding)
commentId : M:TinyLife.Actions.ActionVariety.ImageLayout(System.Single,MLEM.Ui.Elements.Element.DrawCallback,MLEM.Misc.Padding)
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
name : ImageLayout(float, DrawCallback, Padding)
nameWithType : ActionVariety.ImageLayout(float, Element.DrawCallback, Padding)
fullName : TinyLife.Actions.ActionVariety.ImageLayout(float, MLEM.Ui.Elements.Element.DrawCallback, MLEM.Misc.Padding)
nameWithType.vb : ActionVariety.ImageLayout(Single, Element.DrawCallback, Padding)
fullName.vb : TinyLife.Actions.ActionVariety.ImageLayout(Single, MLEM.Ui.Elements.Element.DrawCallback, MLEM.Misc.Padding)
name.vb : ImageLayout(Single, DrawCallback, Padding)
spec.csharp :
- uid : TinyLife.Actions.ActionVariety.ImageLayout(System.Single,MLEM.Ui.Elements.Element.DrawCallback,MLEM.Misc.Padding)
name : ImageLayout
- name : (
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
- uid : MLEM.Ui.Elements.Element.DrawCallback
name : DrawCallback
isExternal : true
- name : ','
- name : " "
- uid : MLEM.Misc.Padding
name : Padding
isExternal : true
- name : )
spec.vb :
- uid : TinyLife.Actions.ActionVariety.ImageLayout(System.Single,MLEM.Ui.Elements.Element.DrawCallback,MLEM.Misc.Padding)
name : ImageLayout
- name : (
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : ','
- name : " "
- uid : MLEM.Ui.Elements.Element.DrawCallback
name : DrawCallback
isExternal : true
- name : ','
- name : " "
- uid : MLEM.Misc.Padding
name : Padding
isExternal : true
- name : )
2021-08-30 20:44:32 +02:00
- uid : TinyLife.Actions.ActionVariety.PortraitLayout(TinyLife.Objects.Person)
commentId : M:TinyLife.Actions.ActionVariety.PortraitLayout(TinyLife.Objects.Person)
2023-03-30 18:07:55 +02:00
name : PortraitLayout(Person)
nameWithType : ActionVariety.PortraitLayout(Person)
fullName : TinyLife.Actions.ActionVariety.PortraitLayout(TinyLife.Objects.Person)
spec.csharp :
- uid : TinyLife.Actions.ActionVariety.PortraitLayout(TinyLife.Objects.Person)
name : PortraitLayout
- name : (
- uid : TinyLife.Objects.Person
name : Person
- name : )
spec.vb :
- uid : TinyLife.Actions.ActionVariety.PortraitLayout(TinyLife.Objects.Person)
name : PortraitLayout
- name : (
- uid : TinyLife.Objects.Person
name : Person
- name : )
2021-08-04 06:51:12 +02:00
- uid : System.Action{MLEM.Ui.Elements.Button}
commentId : T:System.Action{MLEM.Ui.Elements.Button}
parent : System
definition : System.Action`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-1
2021-08-04 06:51:12 +02:00
name : Action<Button>
nameWithType : Action<Button>
fullName : System.Action<MLEM.Ui.Elements.Button>
nameWithType.vb : Action(Of Button)
fullName.vb : System.Action(Of MLEM.Ui.Elements.Button)
name.vb : Action(Of Button)
spec.csharp :
- uid : System.Action`1
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-1
2021-08-04 06:51:12 +02:00
- name : <
- uid : MLEM.Ui.Elements.Button
name : Button
isExternal : true
- name : '>'
spec.vb :
- uid : System.Action`1
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-1
- name : (
- name : Of
- name : " "
2021-08-04 06:51:12 +02:00
- uid : MLEM.Ui.Elements.Button
name : Button
isExternal : true
- name : )
- uid : MLEM.Ui.Elements
commentId : N : MLEM.Ui.Elements
isExternal : true
name : MLEM.Ui.Elements
nameWithType : MLEM.Ui.Elements
fullName : MLEM.Ui.Elements
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Ui
name : Ui
isExternal : true
- name : .
- uid : MLEM.Ui.Elements
name : Elements
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Ui
name : Ui
isExternal : true
- name : .
- uid : MLEM.Ui.Elements
name : Elements
isExternal : true
2021-08-04 06:51:12 +02:00
- uid : System.Action`1
commentId : T:System.Action`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-1
2021-08-04 06:51:12 +02:00
name : Action<T>
nameWithType : Action<T>
fullName : System.Action<T>
nameWithType.vb : Action(Of T)
fullName.vb : System.Action(Of T)
name.vb : Action(Of T)
spec.csharp :
- uid : System.Action`1
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-1
2021-08-04 06:51:12 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Action`1
name : Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.action-1
- name : (
- name : Of
- name : " "
2021-08-04 06:51:12 +02:00
- name : T
- name : )
- uid : TinyLife.Actions.ActionVariety.#ctor*
commentId : Overload:TinyLife.Actions.ActionVariety.#ctor
name : ActionVariety
nameWithType : ActionVariety.ActionVariety
fullName : TinyLife.Actions.ActionVariety.ActionVariety
2023-03-30 18:07:55 +02:00
nameWithType.vb : ActionVariety.New
fullName.vb : TinyLife.Actions.ActionVariety.New
name.vb : New
2022-05-24 13:36:05 +02:00
- uid : System.Object[]
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[]
2022-05-24 13:36:05 +02:00
nameWithType.vb : Object()
2023-03-30 18:07:55 +02:00
fullName.vb : Object()
2022-05-24 13:36:05 +02:00
name.vb : Object()
spec.csharp :
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
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.object
- name : '['
- name : ']'
2022-05-24 13:36:05 +02:00
spec.vb :
- 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 : TinyLife.Actions.ActionVariety.DisplayName
commentId : F:TinyLife.Actions.ActionVariety.DisplayName
2023-03-30 18:07:55 +02:00
name : DisplayName
nameWithType : ActionVariety.DisplayName
fullName : TinyLife.Actions.ActionVariety.DisplayName
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.GetDisplayName*
commentId : Overload:TinyLife.Actions.ActionVariety.GetDisplayName
name : GetDisplayName
nameWithType : ActionVariety.GetDisplayName
fullName : TinyLife.Actions.ActionVariety.GetDisplayName
- uid : TinyLife.Actions.ActionInfo
commentId : T:TinyLife.Actions.ActionInfo
parent : TinyLife.Actions
name : ActionInfo
nameWithType : ActionInfo
fullName : TinyLife.Actions.ActionInfo
- uid : TinyLife.Actions.ActionVariety.CanExecute
commentId : F:TinyLife.Actions.ActionVariety.CanExecute
2023-03-30 18:07:55 +02:00
name : CanExecute
nameWithType : ActionVariety.CanExecute
fullName : TinyLife.Actions.ActionVariety.CanExecute
- uid : TinyLife.Actions.CanExecuteResult.Valid
commentId : F:TinyLife.Actions.CanExecuteResult.Valid
name : Valid
nameWithType : CanExecuteResult.Valid
fullName : TinyLife.Actions.CanExecuteResult.Valid
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.CanBeExecuted*
commentId : Overload:TinyLife.Actions.ActionVariety.CanBeExecuted
name : CanBeExecuted
nameWithType : ActionVariety.CanBeExecuted
fullName : TinyLife.Actions.ActionVariety.CanBeExecuted
- 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
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Actions.CanExecuteResult
commentId : T:TinyLife.Actions.CanExecuteResult
2021-08-04 06:51:12 +02:00
parent : TinyLife.Actions
2022-05-24 13:36:05 +02:00
name : CanExecuteResult
nameWithType : CanExecuteResult
fullName : TinyLife.Actions.CanExecuteResult
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.PassivePriority
commentId : F:TinyLife.Actions.ActionVariety.PassivePriority
2023-03-30 18:07:55 +02:00
name : PassivePriority
nameWithType : ActionVariety.PassivePriority
fullName : TinyLife.Actions.ActionVariety.PassivePriority
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.GetPassivePriority*
commentId : Overload:TinyLife.Actions.ActionVariety.GetPassivePriority
name : GetPassivePriority
nameWithType : ActionVariety.GetPassivePriority
fullName : TinyLife.Actions.ActionVariety.GetPassivePriority
- uid : TinyLife.Objects.Person
commentId : T:TinyLife.Objects.Person
parent : TinyLife.Objects
name : Person
nameWithType : Person
fullName : TinyLife.Objects.Person
2021-11-23 16:24:04 +01:00
- uid : System.Single
commentId : T:System.Single
2021-08-04 06:51:12 +02:00
parent : System
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
2021-08-04 06:51:12 +02:00
- 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-03-09 16:13:05 +01:00
- uid : TinyLife.Actions.ActionVariety
commentId : T:TinyLife.Actions.ActionVariety
parent : TinyLife.Actions
name : ActionVariety
nameWithType : ActionVariety
fullName : TinyLife.Actions.ActionVariety
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Actions.ActionVariety.AddedConstructorArguments
commentId : F:TinyLife.Actions.ActionVariety.AddedConstructorArguments
2023-03-30 18:07:55 +02:00
name : AddedConstructorArguments
nameWithType : ActionVariety.AddedConstructorArguments
fullName : TinyLife.Actions.ActionVariety.AddedConstructorArguments
2022-03-09 16:13:05 +01:00
- uid : TinyLife.Actions.ActionType.AskToTaste
commentId : F:TinyLife.Actions.ActionType.AskToTaste
2023-03-30 18:07:55 +02:00
name : AskToTaste
nameWithType : ActionType.AskToTaste
fullName : TinyLife.Actions.ActionType.AskToTaste
2022-01-08 12:41:09 +01:00
- uid : TinyLife.Actions.ActionVariety.FreePeople*
commentId : Overload:TinyLife.Actions.ActionVariety.FreePeople
name : FreePeople
nameWithType : ActionVariety.FreePeople
fullName : TinyLife.Actions.ActionVariety.FreePeople
2022-07-28 14:58:38 +02:00
- uid : System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Person,System.Boolean},TinyLife.Actions.CanExecuteResult}
commentId : T:System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Person,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<(ActionInfo Info, Person Other, bool Automatic), CanExecuteResult>
nameWithType : Func<(ActionInfo Info, Person Other, bool Automatic), CanExecuteResult>
fullName : System.Func<(TinyLife.Actions.ActionInfo Info, TinyLife.Objects.Person Other, bool Automatic), TinyLife.Actions.CanExecuteResult>
nameWithType.vb : Func(Of (Info As ActionInfo, Other As Person, Automatic As Boolean), CanExecuteResult)
fullName.vb : System.Func(Of (Info As TinyLife.Actions.ActionInfo, Other As TinyLife.Objects.Person, Automatic As Boolean), TinyLife.Actions.CanExecuteResult)
name.vb : Func(Of (Info As ActionInfo, Other As Person, Automatic As Boolean), CanExecuteResult)
2022-07-28 14:58:38 +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-28 14:58:38 +02:00
- name : <
2023-03-30 18:07:55 +02:00
- name : (
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2023-03-30 18:07:55 +02:00
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Person,System.Boolean}.Info
name : Info
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,tinylife.objects.person,system.boolean-.info
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Objects.Person
name : Person
2023-03-30 18:07:55 +02:00
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Person,System.Boolean}.Other
name : Other
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,tinylife.objects.person,system.boolean-.other
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2022-07-28 14:58:38 +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.Actions.ActionInfo,TinyLife.Objects.Person,System.Boolean}.Automatic
name : Automatic
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,tinylife.objects.person,system.boolean-.automatic
- name : )
- name : ','
- name : " "
2022-07-28 14:58:38 +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,TinyLife.Objects.Person,System.Boolean}.Info
name : Info
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,tinylife.objects.person,system.boolean-.info
- name : " "
- name : As
- name : " "
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Person,System.Boolean}.Other
name : Other
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,tinylife.objects.person,system.boolean-.other
- name : " "
- name : As
- name : " "
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Objects.Person
name : Person
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Person,System.Boolean}.Automatic
name : Automatic
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,tinylife.objects.person,system.boolean-.automatic
- name : " "
- name : As
- name : " "
2022-07-28 14:58:38 +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-28 14:58:38 +02:00
- name : )
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Actions.CanExecuteResult
name : CanExecuteResult
- name : )
2022-01-08 12:41:09 +01:00
- 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-01-08 12:41:09 +01: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-01-08 12:41:09 +01: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-01-08 12:41:09 +01:00
- uid : TinyLife.Actions.ActionVariety
name : ActionVariety
- 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
2022-01-08 12:41:09 +01: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
2022-01-08 12:41:09 +01: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 : " "
2022-01-08 12:41:09 +01:00
- name : T
- name : )
2022-05-24 13:36:05 +02:00
- 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-28 14:58:38 +02:00
- uid : TinyLife.Objects.Furniture
commentId : T:TinyLife.Objects.Furniture
parent : TinyLife.Objects
name : Furniture
nameWithType : Furniture
fullName : TinyLife.Objects.Furniture
2022-09-05 14:19:42 +02:00
- uid : System.Linq.Enumerable.Empty``1
commentId : M:System.Linq.Enumerable.Empty``1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.linq.enumerable.empty
name : Empty<TResult>()
nameWithType : Enumerable.Empty<TResult>()
fullName : System.Linq.Enumerable.Empty<TResult>()
nameWithType.vb : Enumerable.Empty(Of TResult)()
fullName.vb : System.Linq.Enumerable.Empty(Of TResult)()
name.vb : Empty(Of TResult)()
spec.csharp :
- uid : System.Linq.Enumerable.Empty``1
name : Empty
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.linq.enumerable.empty
- name : <
- name : TResult
- name : '>'
- name : (
- name : )
spec.vb :
- uid : System.Linq.Enumerable.Empty``1
name : Empty
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.linq.enumerable.empty
- name : (
- name : Of
- name : " "
- name : TResult
- name : )
- name : (
- name : )
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Actions.ActionVariety.StoredFurniture*
commentId : Overload:TinyLife.Actions.ActionVariety.StoredFurniture
name : StoredFurniture
nameWithType : ActionVariety.StoredFurniture
fullName : TinyLife.Actions.ActionVariety.StoredFurniture
- uid : System.Collections.Generic.IEnumerable{TinyLife.Objects.Furniture}
commentId : T:System.Collections.Generic.IEnumerable{TinyLife.Objects.Furniture}
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-07-28 14:58:38 +02:00
name : IEnumerable<Furniture>
nameWithType : IEnumerable<Furniture>
fullName : System.Collections.Generic.IEnumerable<TinyLife.Objects.Furniture>
nameWithType.vb : IEnumerable(Of Furniture)
fullName.vb : System.Collections.Generic.IEnumerable(Of TinyLife.Objects.Furniture)
name.vb : IEnumerable(Of Furniture)
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-07-28 14:58:38 +02:00
- name : <
- uid : TinyLife.Objects.Furniture
name : Furniture
- 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-07-28 14:58:38 +02:00
- uid : TinyLife.Objects.Furniture
name : Furniture
- name : )
- uid : System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Furniture,System.Boolean},TinyLife.Actions.CanExecuteResult}
commentId : T:System.Func{System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Furniture,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<(ActionInfo Info, Furniture Furniture, bool Automatic), CanExecuteResult>
nameWithType : Func<(ActionInfo Info, Furniture Furniture, bool Automatic), CanExecuteResult>
fullName : System.Func<(TinyLife.Actions.ActionInfo Info, TinyLife.Objects.Furniture Furniture, bool Automatic), TinyLife.Actions.CanExecuteResult>
nameWithType.vb : Func(Of (Info As ActionInfo, Furniture As Furniture, Automatic As Boolean), CanExecuteResult)
fullName.vb : System.Func(Of (Info As TinyLife.Actions.ActionInfo, Furniture As TinyLife.Objects.Furniture, Automatic As Boolean), TinyLife.Actions.CanExecuteResult)
name.vb : Func(Of (Info As ActionInfo, Furniture As Furniture, Automatic As Boolean), CanExecuteResult)
2022-07-28 14:58:38 +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-28 14:58:38 +02:00
- name : <
2023-03-30 18:07:55 +02:00
- name : (
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2023-03-30 18:07:55 +02:00
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Furniture,System.Boolean}.Info
name : Info
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,tinylife.objects.furniture,system.boolean-.info
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Objects.Furniture
name : Furniture
2023-03-30 18:07:55 +02:00
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Furniture,System.Boolean}.Furniture
name : Furniture
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,tinylife.objects.furniture,system.boolean-.furniture
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : System.Boolean
2023-03-30 18:07:55 +02:00
name : bool
2022-07-28 14:58:38 +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.Actions.ActionInfo,TinyLife.Objects.Furniture,System.Boolean}.Automatic
name : Automatic
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,tinylife.objects.furniture,system.boolean-.automatic
- name : )
- name : ','
- name : " "
2022-07-28 14:58:38 +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,TinyLife.Objects.Furniture,System.Boolean}.Info
name : Info
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,tinylife.objects.furniture,system.boolean-.info
- name : " "
- name : As
- name : " "
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Furniture,System.Boolean}.Furniture
name : Furniture
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,tinylife.objects.furniture,system.boolean-.furniture
- name : " "
- name : As
- name : " "
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Objects.Furniture
name : Furniture
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.ValueTuple{TinyLife.Actions.ActionInfo,TinyLife.Objects.Furniture,System.Boolean}.Automatic
name : Automatic
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.actions.actioninfo,tinylife.objects.furniture,system.boolean-.automatic
- name : " "
- name : As
- name : " "
2022-07-28 14:58:38 +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-28 14:58:38 +02:00
- name : )
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Actions.CanExecuteResult
name : CanExecuteResult
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.CustomLayout
commentId : F:TinyLife.Actions.ActionVariety.CustomLayout
2023-03-30 18:07:55 +02:00
name : CustomLayout
nameWithType : ActionVariety.CustomLayout
fullName : TinyLife.Actions.ActionVariety.CustomLayout
2021-08-04 06:51:12 +02:00
- 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
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionType.ChangeOutfit
commentId : F:TinyLife.Actions.ActionType.ChangeOutfit
2023-03-30 18:07:55 +02:00
name : ChangeOutfit
nameWithType : ActionType.ChangeOutfit
fullName : TinyLife.Actions.ActionType.ChangeOutfit
2021-08-04 06:51:12 +02:00
- uid : MLEM.Ui.Elements.Element.DrawCallback
commentId : T:MLEM.Ui.Elements.Element.DrawCallback
parent : MLEM.Ui.Elements
isExternal : true
name : Element.DrawCallback
nameWithType : Element.DrawCallback
fullName : MLEM.Ui.Elements.Element.DrawCallback
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM.Ui.Elements.Element
name : Element
isExternal : true
- name : .
- uid : MLEM.Ui.Elements.Element.DrawCallback
name : DrawCallback
isExternal : true
spec.vb :
- uid : MLEM.Ui.Elements.Element
name : Element
isExternal : true
- name : .
- uid : MLEM.Ui.Elements.Element.DrawCallback
name : DrawCallback
isExternal : true
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionVariety.ImageLayout*
commentId : Overload:TinyLife.Actions.ActionVariety.ImageLayout
name : ImageLayout
nameWithType : ActionVariety.ImageLayout
fullName : TinyLife.Actions.ActionVariety.ImageLayout
- uid : MLEM.Misc.Padding
commentId : T:MLEM.Misc.Padding
parent : MLEM.Misc
isExternal : true
name : Padding
nameWithType : Padding
fullName : MLEM.Misc.Padding
2021-08-30 20:44:32 +02:00
- uid : TinyLife.Objects.Person.Portrait
2023-04-14 13:00:36 +02:00
commentId : P:TinyLife.Objects.Person.Portrait
2023-03-30 18:07:55 +02:00
name : Portrait
nameWithType : Person.Portrait
fullName : TinyLife.Objects.Person.Portrait
2021-08-30 20:44:32 +02:00
- uid : TinyLife.Actions.ActionVariety.PortraitLayout*
commentId : Overload:TinyLife.Actions.ActionVariety.PortraitLayout
name : PortraitLayout
nameWithType : ActionVariety.PortraitLayout
fullName : TinyLife.Actions.ActionVariety.PortraitLayout