isAllowed, Func<(PersonLike Person, Furniture Item), bool> isPersonAllowed = null, bool allowAnyInvolved = false)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info
- id: isAllowed
type: System.Func{TinyLife.Objects.Furniture,System.Boolean}
description: A predicate that checks if the given item is the one searched for
- id: isPersonAllowed
type: System.Func{System.ValueTuple{TinyLife.Objects.PersonLike,TinyLife.Objects.Furniture},System.Boolean}
description: Whether the object that the required item should be a child of, or placed onto, is correct
- id: allowAnyInvolved
type: System.Boolean
description: Whether any should be passed to isAllowed
, instead of just the action object
return:
type: TinyLife.Actions.CanExecuteResult
description: A result that represents the validity of the action
content.vb: Public Shared Function CanPickUpOrIsHoldingForTarget(info As ActionInfo, isAllowed As Func(Of Furniture, Boolean), isPersonAllowed As Func(Of (Person As PersonLike, Item As Furniture), Boolean) = Nothing, allowAnyInvolved As Boolean = False) As CanExecuteResult
overload: TinyLife.Actions.ActionType.CanPickUpOrIsHoldingForTarget*
nameWithType.vb: ActionType.CanPickUpOrIsHoldingForTarget(ActionInfo, Func(Of Furniture, Boolean), Func(Of (Person As PersonLike, Item As Furniture), Boolean), Boolean)
fullName.vb: TinyLife.Actions.ActionType.CanPickUpOrIsHoldingForTarget(TinyLife.Actions.ActionInfo, System.Func(Of TinyLife.Objects.Furniture, Boolean), System.Func(Of (Person As TinyLife.Objects.PersonLike, Item As TinyLife.Objects.Furniture), Boolean), Boolean)
name.vb: CanPickUpOrIsHoldingForTarget(ActionInfo, Func(Of Furniture, Boolean), Func(Of (Person As PersonLike, Item As Furniture), Boolean), Boolean)
- uid: TinyLife.Actions.ActionType.HasChairOrIsStandingDesk(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.HasChairOrIsStandingDesk(TinyLife.Actions.ActionInfo,System.Boolean)
id: HasChairOrIsStandingDesk(TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: HasChairOrIsStandingDesk(ActionInfo, bool)
nameWithType: ActionType.HasChairOrIsStandingDesk(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.HasChairOrIsStandingDesk(TinyLife.Actions.ActionInfo, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A helper method intended to be used with that determines if the given object is sat on a table or desk that has a chair or sat on a standing desk that doesn't need a chair
example: []
syntax:
content: public static CanExecuteResult HasChairOrIsStandingDesk(ActionInfo info, bool automatic)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info
- id: automatic
type: System.Boolean
description: Whether or not this action is started automatically. This property is unused, but present for ease of use with
return:
type: TinyLife.Actions.CanExecuteResult
description: if there is a chair, a result if there is no valid chair
content.vb: Public Shared Function HasChairOrIsStandingDesk(info As ActionInfo, automatic As Boolean) As CanExecuteResult
overload: TinyLife.Actions.ActionType.HasChairOrIsStandingDesk*
nameWithType.vb: ActionType.HasChairOrIsStandingDesk(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.HasChairOrIsStandingDesk(TinyLife.Actions.ActionInfo, Boolean)
name.vb: HasChairOrIsStandingDesk(ActionInfo, Boolean)
- uid: TinyLife.Actions.ActionType.IsDislikedOrMean(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.IsDislikedOrMean(TinyLife.Actions.ActionInfo,System.Boolean)
id: IsDislikedOrMean(TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: IsDislikedOrMean(ActionInfo, bool)
nameWithType: ActionType.IsDislikedOrMean(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.IsDislikedOrMean(TinyLife.Actions.ActionInfo, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: >-
A helper method intended to be used with that determines if the action is executed manually, the given 's person has the personality type, or if the interaction partner has the relationship type (or lower).
If the person's current is , this method also returns .
example: []
syntax:
content: public static CanExecuteResult IsDislikedOrMean(ActionInfo info, bool automatic)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info
- id: automatic
type: System.Boolean
description: Whether this action is automatic
return:
type: TinyLife.Actions.CanExecuteResult
description: if any of the conditions are met, otherwise
content.vb: Public Shared Function IsDislikedOrMean(info As ActionInfo, automatic As Boolean) As CanExecuteResult
overload: TinyLife.Actions.ActionType.IsDislikedOrMean*
nameWithType.vb: ActionType.IsDislikedOrMean(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.IsDislikedOrMean(TinyLife.Actions.ActionInfo, Boolean)
name.vb: IsDislikedOrMean(ActionInfo, Boolean)
- uid: TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo,System.Boolean)
id: IsReadyForRomance(TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: IsReadyForRomance(ActionInfo, bool)
nameWithType: ActionType.IsReadyForRomance(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: >-
A helper method intended to be used with that determines if the and their interaction partner are ready to engage in romantic activities.
Two people are considered ready if they are , both or older, and when the action is either started manually, or they have a high enough and either an existing romantic relationship or is enabled.
This method will also return a "TooSad" result if the person is currently feeling .
This method should be used for actions that are romantic in nature.
example: []
syntax:
content: public static CanExecuteResult IsReadyForRomance(ActionInfo info, bool automatic)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info
- id: automatic
type: System.Boolean
description: Whether this action is automatic
return:
type: TinyLife.Actions.CanExecuteResult
description: if any of the conditions are met, otherwise
content.vb: Public Shared Function IsReadyForRomance(info As ActionInfo, automatic As Boolean) As CanExecuteResult
overload: TinyLife.Actions.ActionType.IsReadyForRomance*
nameWithType.vb: ActionType.IsReadyForRomance(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.IsReadyForRomance(TinyLife.Actions.ActionInfo, Boolean)
name.vb: IsReadyForRomance(ActionInfo, Boolean)
- uid: TinyLife.Actions.ActionType.IsNotEmotional(TinyLife.Actions.ActionInfo,TinyLife.Emotions.EmotionType[])
commentId: M:TinyLife.Actions.ActionType.IsNotEmotional(TinyLife.Actions.ActionInfo,TinyLife.Emotions.EmotionType[])
id: IsNotEmotional(TinyLife.Actions.ActionInfo,TinyLife.Emotions.EmotionType[])
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: IsNotEmotional(ActionInfo, params EmotionType[])
nameWithType: ActionType.IsNotEmotional(ActionInfo, params EmotionType[])
fullName: TinyLife.Actions.ActionType.IsNotEmotional(TinyLife.Actions.ActionInfo, params TinyLife.Emotions.EmotionType[])
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A helper method intended to be used with that determines if the 's has any of the given emotions
, and returns a to indicate as such.
example: []
syntax:
content: public static CanExecuteResult IsNotEmotional(ActionInfo info, params EmotionType[] emotions)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info.
- id: emotions
type: TinyLife.Emotions.EmotionType[]
description: The emotions that should be queried. If an entry is null, it will simply be ignored.
return:
type: TinyLife.Actions.CanExecuteResult
description: A that is invalid based on one of the given emotions
, or if none of the emotions are present.
content.vb: Public Shared Function IsNotEmotional(info As ActionInfo, ParamArray emotions As EmotionType()) As CanExecuteResult
overload: TinyLife.Actions.ActionType.IsNotEmotional*
exceptions:
- type: System.ArgumentOutOfRangeException
commentId: T:System.ArgumentOutOfRangeException
description: Thrown if the emotions
array has no entries.
nameWithType.vb: ActionType.IsNotEmotional(ActionInfo, ParamArray EmotionType())
fullName.vb: TinyLife.Actions.ActionType.IsNotEmotional(TinyLife.Actions.ActionInfo, ParamArray TinyLife.Emotions.EmotionType())
name.vb: IsNotEmotional(ActionInfo, ParamArray EmotionType())
- uid: TinyLife.Actions.ActionType.IsNotEmotional(TinyLife.Emotions.EmotionType[])
commentId: M:TinyLife.Actions.ActionType.IsNotEmotional(TinyLife.Emotions.EmotionType[])
id: IsNotEmotional(TinyLife.Emotions.EmotionType[])
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: IsNotEmotional(params EmotionType[])
nameWithType: ActionType.IsNotEmotional(params EmotionType[])
fullName: TinyLife.Actions.ActionType.IsNotEmotional(params TinyLife.Emotions.EmotionType[])
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A helper method intended to be used with that determines if the 's has any of the given emotions
, and returns a to indicate as such.
example: []
syntax:
content: public static ActionType.CanExecuteDelegate IsNotEmotional(params EmotionType[] emotions)
parameters:
- id: emotions
type: TinyLife.Emotions.EmotionType[]
description: The emotions that should be queried. If an entry is null, it will simply be ignored.
return:
type: TinyLife.Actions.ActionType.CanExecuteDelegate
description: A that is invalid based on one of the given emotions
, or if none of the emotions are present.
content.vb: Public Shared Function IsNotEmotional(ParamArray emotions As EmotionType()) As ActionType.CanExecuteDelegate
overload: TinyLife.Actions.ActionType.IsNotEmotional*
exceptions:
- type: System.ArgumentOutOfRangeException
commentId: T:System.ArgumentOutOfRangeException
description: Thrown if the emotions
array has no entries.
nameWithType.vb: ActionType.IsNotEmotional(ParamArray EmotionType())
fullName.vb: TinyLife.Actions.ActionType.IsNotEmotional(ParamArray TinyLife.Emotions.EmotionType())
name.vb: IsNotEmotional(ParamArray EmotionType())
- uid: TinyLife.Actions.ActionType.IsEmptyHanded(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.IsEmptyHanded(TinyLife.Actions.ActionInfo,System.Boolean)
id: IsEmptyHanded(TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: IsEmptyHanded(ActionInfo, bool)
nameWithType: ActionType.IsEmptyHanded(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.IsEmptyHanded(TinyLife.Actions.ActionInfo, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A helper method intended to be used with that determines if the person is not holding an item or a .
example: []
syntax:
content: public static CanExecuteResult IsEmptyHanded(ActionInfo info, bool automatic)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info
- id: automatic
type: System.Boolean
description: Whether this action is automatic (unused)
return:
type: TinyLife.Actions.CanExecuteResult
description: if the person's hands are empty, a "HoldingItem" result otherwise
content.vb: Public Shared Function IsEmptyHanded(info As ActionInfo, automatic As Boolean) As CanExecuteResult
overload: TinyLife.Actions.ActionType.IsEmptyHanded*
nameWithType.vb: ActionType.IsEmptyHanded(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.IsEmptyHanded(TinyLife.Actions.ActionInfo, Boolean)
name.vb: IsEmptyHanded(ActionInfo, Boolean)
- uid: TinyLife.Actions.ActionType.IsNotHoldingPerson(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.IsNotHoldingPerson(TinyLife.Actions.ActionInfo,System.Boolean)
id: IsNotHoldingPerson(TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: IsNotHoldingPerson(ActionInfo, bool)
nameWithType: ActionType.IsNotHoldingPerson(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.IsNotHoldingPerson(TinyLife.Actions.ActionInfo, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A helper method intended to be used with that determines whether the person is currently holding another person.
example: []
syntax:
content: public static CanExecuteResult IsNotHoldingPerson(ActionInfo info, bool automatic)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info
- id: automatic
type: System.Boolean
description: Whether this action is automatic (unused)
return:
type: TinyLife.Actions.CanExecuteResult
description: if the person is not holding another person, a "HoldingPerson" otherwise.
content.vb: Public Shared Function IsNotHoldingPerson(info As ActionInfo, automatic As Boolean) As CanExecuteResult
overload: TinyLife.Actions.ActionType.IsNotHoldingPerson*
nameWithType.vb: ActionType.IsNotHoldingPerson(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.IsNotHoldingPerson(TinyLife.Actions.ActionInfo, Boolean)
name.vb: IsNotHoldingPerson(ActionInfo, Boolean)
- uid: TinyLife.Actions.ActionType.IsNotExpired(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.IsNotExpired(TinyLife.Actions.ActionInfo,System.Boolean)
id: IsNotExpired(TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: IsNotExpired(ActionInfo, bool)
nameWithType: ActionType.IsNotExpired(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.IsNotExpired(TinyLife.Actions.ActionInfo, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A helper method intended to be used with that determines whether the action object or any involved objects are expired, and returns an "Expired" result if it is
example: []
syntax:
content: public static CanExecuteResult IsNotExpired(ActionInfo info, bool automatic)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info
- id: automatic
type: System.Boolean
description: Whether the action is automatic (unused)
return:
type: TinyLife.Actions.CanExecuteResult
description: if the action object is not expired, an "Expired" result otherwise
content.vb: Public Shared Function IsNotExpired(info As ActionInfo, automatic As Boolean) As CanExecuteResult
overload: TinyLife.Actions.ActionType.IsNotExpired*
nameWithType.vb: ActionType.IsNotExpired(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.IsNotExpired(TinyLife.Actions.ActionInfo, Boolean)
name.vb: IsNotExpired(ActionInfo, Boolean)
- uid: TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo,System.Boolean)
id: CanDoImportantAction(TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: CanDoImportantAction(ActionInfo, bool)
nameWithType: ActionType.CanDoImportantAction(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: >-
A helper method intended to be used with that determines whether an important action can be executed.
An important action can be executed if it is manual, not in the current household, or the per-save option is true.
example: []
syntax:
content: public static CanExecuteResult CanDoImportantAction(ActionInfo info, bool automatic)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info
- id: automatic
type: System.Boolean
description: Whether the action is automatic
return:
type: TinyLife.Actions.CanExecuteResult
description: if an important action can be executed, otherwise
content.vb: Public Shared Function CanDoImportantAction(info As ActionInfo, automatic As Boolean) As CanExecuteResult
overload: TinyLife.Actions.ActionType.CanDoImportantAction*
nameWithType.vb: ActionType.CanDoImportantAction(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.CanDoImportantAction(TinyLife.Actions.ActionInfo, Boolean)
name.vb: CanDoImportantAction(ActionInfo, Boolean)
- uid: TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo,System.Boolean)
id: CanDoSocialAction(TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: CanDoSocialAction(ActionInfo, bool)
nameWithType: ActionType.CanDoSocialAction(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: >-
A helper method intended to be used with that determines whether a person is currently able to do a social action with the 's action object.
This method returns if the action is manual (automatic
is false), or if is true, or if there is an existing relationship between the two parties.
This method is automatically called when is used.
example: []
syntax:
content: public static CanExecuteResult CanDoSocialAction(ActionInfo info, bool automatic)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info
- id: automatic
type: System.Boolean
description: Whether the action is automatic
return:
type: TinyLife.Actions.CanExecuteResult
description: if a social action can be executed, otherwise
content.vb: Public Shared Function CanDoSocialAction(info As ActionInfo, automatic As Boolean) As CanExecuteResult
overload: TinyLife.Actions.ActionType.CanDoSocialAction*
nameWithType.vb: ActionType.CanDoSocialAction(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.CanDoSocialAction(TinyLife.Actions.ActionInfo, Boolean)
name.vb: CanDoSocialAction(ActionInfo, Boolean)
- uid: TinyLife.Actions.ActionType.AreDating(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.AreDating(TinyLife.Actions.ActionInfo,System.Boolean)
id: AreDating(TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: AreDating(ActionInfo, bool)
nameWithType: ActionType.AreDating(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.AreDating(TinyLife.Actions.ActionInfo, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A helper method intended to be used with that determines whether the person and the interaction partner are currently dating
example: []
syntax:
content: public static CanExecuteResult AreDating(ActionInfo info, bool automatic)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info
- id: automatic
type: System.Boolean
description: Whether the action is automatic (unused)
return:
type: TinyLife.Actions.CanExecuteResult
description: if they are dating, otherwise
content.vb: Public Shared Function AreDating(info As ActionInfo, automatic As Boolean) As CanExecuteResult
overload: TinyLife.Actions.ActionType.AreDating*
nameWithType.vb: ActionType.AreDating(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.AreDating(TinyLife.Actions.ActionInfo, Boolean)
name.vb: AreDating(ActionInfo, Boolean)
- uid: TinyLife.Actions.ActionType.CanExecuteAll(TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Actions.ActionType.CanExecuteDelegate[])
commentId: M:TinyLife.Actions.ActionType.CanExecuteAll(TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Actions.ActionType.CanExecuteDelegate[])
id: CanExecuteAll(TinyLife.Actions.ActionInfo,System.Boolean,TinyLife.Actions.ActionType.CanExecuteDelegate[])
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: CanExecuteAll(ActionInfo, bool, params CanExecuteDelegate[])
nameWithType: ActionType.CanExecuteAll(ActionInfo, bool, params ActionType.CanExecuteDelegate[])
fullName: TinyLife.Actions.ActionType.CanExecuteAll(TinyLife.Actions.ActionInfo, bool, params TinyLife.Actions.ActionType.CanExecuteDelegate[])
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: >-
A helper method intended to be used with that determines if all of the passed checks pass.
If one of the passed checks does not pass, its result is returned. If all of them pass, is returned. In the context of this method, a null counts as .
This method is designed to be used with the other helper methods in this class, for example:
CanExecuteAll(info, automatic, HasChair, IsFunctional, IsEmptyHanded)
example: []
syntax:
content: public static CanExecuteResult CanExecuteAll(ActionInfo info, bool automatic, params ActionType.CanExecuteDelegate[] conditions)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info
- id: automatic
type: System.Boolean
description: Whether this action is automatic
- id: conditions
type: TinyLife.Actions.ActionType.CanExecuteDelegate[]
description: The conditions that should be checked
return:
type: TinyLife.Actions.CanExecuteResult
description: if all of the conditions are valid, else the first invalid result
content.vb: Public Shared Function CanExecuteAll(info As ActionInfo, automatic As Boolean, ParamArray conditions As ActionType.CanExecuteDelegate()) As CanExecuteResult
overload: TinyLife.Actions.ActionType.CanExecuteAll*
nameWithType.vb: ActionType.CanExecuteAll(ActionInfo, Boolean, ParamArray ActionType.CanExecuteDelegate())
fullName.vb: TinyLife.Actions.ActionType.CanExecuteAll(TinyLife.Actions.ActionInfo, Boolean, ParamArray TinyLife.Actions.ActionType.CanExecuteDelegate())
name.vb: CanExecuteAll(ActionInfo, Boolean, ParamArray CanExecuteDelegate())
- uid: TinyLife.Actions.ActionType.CanExecuteAll(TinyLife.Actions.ActionType.CanExecuteDelegate[])
commentId: M:TinyLife.Actions.ActionType.CanExecuteAll(TinyLife.Actions.ActionType.CanExecuteDelegate[])
id: CanExecuteAll(TinyLife.Actions.ActionType.CanExecuteDelegate[])
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: CanExecuteAll(params CanExecuteDelegate[])
nameWithType: ActionType.CanExecuteAll(params ActionType.CanExecuteDelegate[])
fullName: TinyLife.Actions.ActionType.CanExecuteAll(params TinyLife.Actions.ActionType.CanExecuteDelegate[])
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: >-
A helper method intended to be used with that determines if all of the passed checks pass.
If one of the passed checks does not pass, its result is returned. If all of them pass, is returned. In the context of this method, a null counts as .
This method is designed to be used with the other helper methods in this class, for example:
CanExecuteAll(info, automatic, HasChair, IsFunctional, IsEmptyHanded)
example: []
syntax:
content: public static ActionType.CanExecuteDelegate CanExecuteAll(params ActionType.CanExecuteDelegate[] conditions)
parameters:
- id: conditions
type: TinyLife.Actions.ActionType.CanExecuteDelegate[]
description: The conditions that should be checked
return:
type: TinyLife.Actions.ActionType.CanExecuteDelegate
description: if all of the conditions are valid, else the first invalid result
content.vb: Public Shared Function CanExecuteAll(ParamArray conditions As ActionType.CanExecuteDelegate()) As ActionType.CanExecuteDelegate
overload: TinyLife.Actions.ActionType.CanExecuteAll*
nameWithType.vb: ActionType.CanExecuteAll(ParamArray ActionType.CanExecuteDelegate())
fullName.vb: TinyLife.Actions.ActionType.CanExecuteAll(ParamArray TinyLife.Actions.ActionType.CanExecuteDelegate())
name.vb: CanExecuteAll(ParamArray CanExecuteDelegate())
- uid: TinyLife.Actions.ActionType.CanBeSexual(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.CanBeSexual(TinyLife.Actions.ActionInfo,System.Boolean)
id: CanBeSexual(TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: CanBeSexual(ActionInfo, bool)
nameWithType: ActionType.CanBeSexual(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.CanBeSexual(TinyLife.Actions.ActionInfo, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: >-
A helper method intended to be used with that determines whether a person can invoke a sexual activity.
A can invoke such an activity iff they're not a and automatic
is either false or the person is not asexual ().
example: []
syntax:
content: public static CanExecuteResult CanBeSexual(ActionInfo info, bool automatic)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info
- id: automatic
type: System.Boolean
description: Whether this action is automatic
return:
type: TinyLife.Actions.CanExecuteResult
description: if the person cannot be sexual, otherwise
content.vb: Public Shared Function CanBeSexual(info As ActionInfo, automatic As Boolean) As CanExecuteResult
overload: TinyLife.Actions.ActionType.CanBeSexual*
nameWithType.vb: ActionType.CanBeSexual(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.CanBeSexual(TinyLife.Actions.ActionInfo, Boolean)
name.vb: CanBeSexual(ActionInfo, Boolean)
- uid: TinyLife.Actions.ActionType.HasSpaceInHousehold(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.HasSpaceInHousehold(TinyLife.Actions.ActionInfo,System.Boolean)
id: HasSpaceInHousehold(TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: HasSpaceInHousehold(ActionInfo, bool)
nameWithType: ActionType.HasSpaceInHousehold(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.HasSpaceInHousehold(TinyLife.Actions.ActionInfo, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A helper method intended to be used with that determines whether an action info's 's has space for another household member.
example: []
syntax:
content: public static CanExecuteResult HasSpaceInHousehold(ActionInfo info, bool automatic)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info.
- id: automatic
type: System.Boolean
description: Whether this action is automatic, which is unused in this method.
return:
type: TinyLife.Actions.CanExecuteResult
description: A that indicates whether there is space in the active household.
content.vb: Public Shared Function HasSpaceInHousehold(info As ActionInfo, automatic As Boolean) As CanExecuteResult
overload: TinyLife.Actions.ActionType.HasSpaceInHousehold*
nameWithType.vb: ActionType.HasSpaceInHousehold(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.HasSpaceInHousehold(TinyLife.Actions.ActionInfo, Boolean)
name.vb: HasSpaceInHousehold(ActionInfo, Boolean)
- uid: TinyLife.Actions.ActionType.IsNotPregnant(TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.IsNotPregnant(TinyLife.Actions.ActionInfo,System.Boolean)
id: IsNotPregnant(TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: IsNotPregnant(ActionInfo, bool)
nameWithType: ActionType.IsNotPregnant(ActionInfo, bool)
fullName: TinyLife.Actions.ActionType.IsNotPregnant(TinyLife.Actions.ActionInfo, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A helper method intended to be used with that determines whether an action info's is not currently pregnant.
example: []
syntax:
content: public static CanExecuteResult IsNotPregnant(ActionInfo info, bool automatic)
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info.
- id: automatic
type: System.Boolean
description: Whether this action is automatic, which is unused in this method.
return:
type: TinyLife.Actions.CanExecuteResult
description: A that indicates whether the person is not pregnant.
content.vb: Public Shared Function IsNotPregnant(info As ActionInfo, automatic As Boolean) As CanExecuteResult
overload: TinyLife.Actions.ActionType.IsNotPregnant*
nameWithType.vb: ActionType.IsNotPregnant(ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.ActionType.IsNotPregnant(TinyLife.Actions.ActionInfo, Boolean)
name.vb: IsNotPregnant(ActionInfo, Boolean)
- uid: TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.PersonLike,TinyLife.Skills.SkillType,System.Boolean)
commentId: M:TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.PersonLike,TinyLife.Skills.SkillType,System.Boolean)
id: GetSkillPriorityMod(TinyLife.Objects.PersonLike,TinyLife.Skills.SkillType,System.Boolean)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: GetSkillPriorityMod(PersonLike, SkillType, bool)
nameWithType: ActionType.GetSkillPriorityMod(PersonLike, SkillType, bool)
fullName: TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.PersonLike, TinyLife.Skills.SkillType, bool)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: >-
Returns a modifier based on whether the person's , or existing boost or require the passed skill, which can be used for if an action involves a skill building activity.
Actions like and use this to make sure that they are only executed if is enabled and if the person could use the skill.
The modifier returned can be multiplied with a constant, default passive priority.
example: []
syntax:
content: public static float GetSkillPriorityMod(PersonLike person, SkillType skill, bool force = false)
parameters:
- id: person
type: TinyLife.Objects.PersonLike
description: The person to execute an action.
- id: skill
type: TinyLife.Skills.SkillType
description: The skill whose building is involved in the action.
- id: force
type: System.Boolean
description: Whether a value other than 0 should be returned even if is disabled. Defaults to false.
return:
type: System.Single
description: A modifier that is between 0 and 1, based on whether the person's personality or existing skills boost or require the passed skill.
content.vb: Public Shared Function GetSkillPriorityMod(person As PersonLike, skill As SkillType, force As Boolean = False) As Single
overload: TinyLife.Actions.ActionType.GetSkillPriorityMod*
nameWithType.vb: ActionType.GetSkillPriorityMod(PersonLike, SkillType, Boolean)
fullName.vb: TinyLife.Actions.ActionType.GetSkillPriorityMod(TinyLife.Objects.PersonLike, TinyLife.Skills.SkillType, Boolean)
name.vb: GetSkillPriorityMod(PersonLike, SkillType, Boolean)
- uid: TinyLife.Actions.ActionType.DisplayNameWithPrice(System.Func{TinyLife.Actions.ActionInfo,System.Single})
commentId: M:TinyLife.Actions.ActionType.DisplayNameWithPrice(System.Func{TinyLife.Actions.ActionInfo,System.Single})
id: DisplayNameWithPrice(System.Func{TinyLife.Actions.ActionInfo,System.Single})
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: DisplayNameWithPrice(Func)
nameWithType: ActionType.DisplayNameWithPrice(Func)
fullName: TinyLife.Actions.ActionType.DisplayNameWithPrice(System.Func)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A function that can be used with to display the name of an action with its execution price.
example: []
syntax:
content: public static Func DisplayNameWithPrice(Func priceFunc)
parameters:
- id: priceFunc
type: System.Func{TinyLife.Actions.ActionInfo,System.Single}
description: A function that returns the execution price for the given action information. If 0 or lower is returned, no price is displayed.
return:
type: System.Func{System.String,TinyLife.Actions.ActionInfo,System.String}
description: A function that returns the action's display name with the price appended.
content.vb: Public Shared Function DisplayNameWithPrice(priceFunc As Func(Of ActionInfo, Single)) As Func(Of String, ActionInfo, String)
overload: TinyLife.Actions.ActionType.DisplayNameWithPrice*
nameWithType.vb: ActionType.DisplayNameWithPrice(Func(Of ActionInfo, Single))
fullName.vb: TinyLife.Actions.ActionType.DisplayNameWithPrice(System.Func(Of TinyLife.Actions.ActionInfo, Single))
name.vb: DisplayNameWithPrice(Func(Of ActionInfo, Single))
- uid: TinyLife.Actions.ActionType.DisplayNameWithPrice(System.Single)
commentId: M:TinyLife.Actions.ActionType.DisplayNameWithPrice(System.Single)
id: DisplayNameWithPrice(System.Single)
parent: TinyLife.Actions.ActionType
langs:
- csharp
- vb
name: DisplayNameWithPrice(float)
nameWithType: ActionType.DisplayNameWithPrice(float)
fullName: TinyLife.Actions.ActionType.DisplayNameWithPrice(float)
type: Method
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A function that can be used with to display the name of an action with its execution price.
example: []
syntax:
content: public static Func DisplayNameWithPrice(float price)
parameters:
- id: price
type: System.Single
description: The execution price for the given action information. If this is 0 or lower, no price is displayed.
return:
type: System.Func{System.String,TinyLife.Actions.ActionInfo,System.String}
description: A function that returns the action's display name with the price appended.
content.vb: Public Shared Function DisplayNameWithPrice(price As Single) As Func(Of String, ActionInfo, String)
overload: TinyLife.Actions.ActionType.DisplayNameWithPrice*
nameWithType.vb: ActionType.DisplayNameWithPrice(Single)
fullName.vb: TinyLife.Actions.ActionType.DisplayNameWithPrice(Single)
name.vb: DisplayNameWithPrice(Single)
references:
- uid: TinyLife.Actions.Action
commentId: T:TinyLife.Actions.Action
parent: TinyLife.Actions
href: TinyLife.Actions.Action.html
name: Action
nameWithType: Action
fullName: TinyLife.Actions.Action
- uid: TinyLife.Actions.ActionType.Register(TinyLife.Actions.ActionType.TypeSettings)
commentId: M:TinyLife.Actions.ActionType.Register(TinyLife.Actions.ActionType.TypeSettings)
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_Register_TinyLife_Actions_ActionType_TypeSettings_
name: Register(TypeSettings)
nameWithType: ActionType.Register(ActionType.TypeSettings)
fullName: TinyLife.Actions.ActionType.Register(TinyLife.Actions.ActionType.TypeSettings)
spec.csharp:
- uid: TinyLife.Actions.ActionType.Register(TinyLife.Actions.ActionType.TypeSettings)
name: Register
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_Register_TinyLife_Actions_ActionType_TypeSettings_
- name: (
- uid: TinyLife.Actions.ActionType.TypeSettings
name: TypeSettings
href: TinyLife.Actions.ActionType.TypeSettings.html
- name: )
spec.vb:
- uid: TinyLife.Actions.ActionType.Register(TinyLife.Actions.ActionType.TypeSettings)
name: Register
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_Register_TinyLife_Actions_ActionType_TypeSettings_
- name: (
- uid: TinyLife.Actions.ActionType.TypeSettings
name: TypeSettings
href: TinyLife.Actions.ActionType.TypeSettings.html
- name: )
- uid: TinyLife.Actions.ActionType.TypeSettings.ConstructedType
commentId: F:TinyLife.Actions.ActionType.TypeSettings.ConstructedType
href: TinyLife.Actions.ActionType.TypeSettings.html#TinyLife_Actions_ActionType_TypeSettings_ConstructedType
name: ConstructedType
nameWithType: ActionType.TypeSettings.ConstructedType
fullName: TinyLife.Actions.ActionType.TypeSettings.ConstructedType
- uid: TinyLife.Actions
commentId: N:TinyLife.Actions
href: TinyLife.html
name: TinyLife.Actions
nameWithType: TinyLife.Actions
fullName: TinyLife.Actions
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Actions
name: Actions
href: TinyLife.Actions.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Actions
name: Actions
href: TinyLife.Actions.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: TinyLife.Emotions.IEmotionSource
commentId: T:TinyLife.Emotions.IEmotionSource
parent: TinyLife.Emotions
href: TinyLife.Emotions.IEmotionSource.html
name: IEmotionSource
nameWithType: IEmotionSource
fullName: TinyLife.Emotions.IEmotionSource
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
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)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
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)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
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)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: TinyLife.Actions.ActionType.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
name: JsonCopy(ActionType)
nameWithType: Extensions.JsonCopy(ActionType)
fullName: TinyLife.Utilities.Extensions.JsonCopy(TinyLife.Actions.ActionType)
nameWithType.vb: Extensions.JsonCopy(Of ActionType)(ActionType)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.ActionType)(TinyLife.Actions.ActionType)
name.vb: JsonCopy(Of ActionType)(ActionType)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.ActionType)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: '>'
- name: (
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.ActionType)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: )
- name: (
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: TinyLife.Emotions
commentId: N:TinyLife.Emotions
href: TinyLife.html
name: TinyLife.Emotions
nameWithType: TinyLife.Emotions
fullName: TinyLife.Emotions
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Emotions
name: Emotions
href: TinyLife.Emotions.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Emotions
name: Emotions
href: TinyLife.Emotions.html
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
name: JsonCopy(T)
nameWithType: Extensions.JsonCopy(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(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)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- name: T
- name: '>'
- name: (
- name: T
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- name: T
- name: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
href: TinyLife.Utilities.Extensions.html
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
href: TinyLife.html
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Utilities
name: Utilities
href: TinyLife.Utilities.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Utilities
name: Utilities
href: TinyLife.Utilities.html
- uid: System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Actions.ActionType}
commentId: T:System.Collections.ObjectModel.ReadOnlyDictionary{System.String,TinyLife.Actions.ActionType}
parent: System.Collections.ObjectModel
definition: System.Collections.ObjectModel.ReadOnlyDictionary`2
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
name: ReadOnlyDictionary
nameWithType: ReadOnlyDictionary
fullName: System.Collections.ObjectModel.ReadOnlyDictionary
nameWithType.vb: ReadOnlyDictionary(Of String, ActionType)
fullName.vb: System.Collections.ObjectModel.ReadOnlyDictionary(Of String, TinyLife.Actions.ActionType)
name.vb: ReadOnlyDictionary(Of String, ActionType)
spec.csharp:
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyDictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: '>'
spec.vb:
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyDictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: (
- name: Of
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: )
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
commentId: T:System.Collections.ObjectModel.ReadOnlyDictionary`2
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
name: ReadOnlyDictionary
nameWithType: ReadOnlyDictionary
fullName: System.Collections.ObjectModel.ReadOnlyDictionary
nameWithType.vb: ReadOnlyDictionary(Of TKey, TValue)
fullName.vb: System.Collections.ObjectModel.ReadOnlyDictionary(Of TKey, TValue)
name.vb: ReadOnlyDictionary(Of TKey, TValue)
spec.csharp:
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyDictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: <
- name: TKey
- name: ','
- name: " "
- name: TValue
- name: '>'
spec.vb:
- uid: System.Collections.ObjectModel.ReadOnlyDictionary`2
name: ReadOnlyDictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel.readonlydictionary-2
- name: (
- name: Of
- name: " "
- name: TKey
- name: ','
- name: " "
- name: TValue
- name: )
- uid: System.Collections.ObjectModel
commentId: N:System.Collections.ObjectModel
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Collections.ObjectModel
nameWithType: System.Collections.ObjectModel
fullName: System.Collections.ObjectModel
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.ObjectModel
name: ObjectModel
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.ObjectModel
name: ObjectModel
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.objectmodel
- uid: TinyLife.Actions.ActionType.TypeSettings
commentId: T:TinyLife.Actions.ActionType.TypeSettings
parent: TinyLife.Actions
href: TinyLife.Actions.ActionType.html
name: ActionType.TypeSettings
nameWithType: ActionType.TypeSettings
fullName: TinyLife.Actions.ActionType.TypeSettings
spec.csharp:
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: .
- uid: TinyLife.Actions.ActionType.TypeSettings
name: TypeSettings
href: TinyLife.Actions.ActionType.TypeSettings.html
spec.vb:
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: .
- uid: TinyLife.Actions.ActionType.TypeSettings
name: TypeSettings
href: TinyLife.Actions.ActionType.TypeSettings.html
- uid: TinyLife.Emotions.EmotionModifier
commentId: T:TinyLife.Emotions.EmotionModifier
parent: TinyLife.Emotions
href: TinyLife.Emotions.EmotionModifier.html
name: EmotionModifier
nameWithType: EmotionModifier
fullName: TinyLife.Emotions.EmotionModifier
- uid: TinyLife.Actions.ActionType.SourceString*
commentId: Overload:TinyLife.Actions.ActionType.SourceString
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_SourceString
name: SourceString
nameWithType: ActionType.SourceString
fullName: TinyLife.Actions.ActionType.SourceString
- uid: TinyLife.Emotions.IEmotionSource.SourceString
commentId: P:TinyLife.Emotions.IEmotionSource.SourceString
parent: TinyLife.Emotions.IEmotionSource
href: TinyLife.Emotions.IEmotionSource.html#TinyLife_Emotions_IEmotionSource_SourceString
name: SourceString
nameWithType: IEmotionSource.SourceString
fullName: TinyLife.Emotions.IEmotionSource.SourceString
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
- uid: TinyLife.Actions.ActionType
commentId: T:TinyLife.Actions.ActionType
parent: TinyLife.Actions
href: TinyLife.Actions.ActionType.html
name: ActionType
nameWithType: ActionType
fullName: TinyLife.Actions.ActionType
- uid: TinyLife.Actions.ActionType.Construct*
commentId: Overload:TinyLife.Actions.ActionType.Construct
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_Construct__1_TinyLife_Actions_ActionInfo_TinyLife_Actions_ActionArgument___
name: Construct
nameWithType: ActionType.Construct
fullName: TinyLife.Actions.ActionType.Construct
- uid: TinyLife.Actions.ActionInfo
commentId: T:TinyLife.Actions.ActionInfo
parent: TinyLife.Actions
href: TinyLife.Actions.ActionInfo.html
name: ActionInfo
nameWithType: ActionInfo
fullName: TinyLife.Actions.ActionInfo
- uid: TinyLife.Actions.ActionArgument[]
isExternal: true
href: TinyLife.Actions.ActionArgument.html
name: ActionArgument[]
nameWithType: ActionArgument[]
fullName: TinyLife.Actions.ActionArgument[]
nameWithType.vb: ActionArgument()
fullName.vb: TinyLife.Actions.ActionArgument()
name.vb: ActionArgument()
spec.csharp:
- uid: TinyLife.Actions.ActionArgument
name: ActionArgument
href: TinyLife.Actions.ActionArgument.html
- name: '['
- name: ']'
spec.vb:
- uid: TinyLife.Actions.ActionArgument
name: ActionArgument
href: TinyLife.Actions.ActionArgument.html
- name: (
- name: )
- uid: '{T}'
commentId: '!:T'
definition: T
name: T
nameWithType: T
fullName: T
- uid: T
name: T
nameWithType: T
fullName: T
- uid: TinyLife.Actions.ActionArgument
commentId: T:TinyLife.Actions.ActionArgument
href: TinyLife.Actions.ActionArgument.html
name: ActionArgument
nameWithType: ActionArgument
fullName: TinyLife.Actions.ActionArgument
- uid: TinyLife.Actions.ActionType.Construct``1(TinyLife.Actions.ActionInfo,TinyLife.Actions.ActionArgument[])
commentId: M:TinyLife.Actions.ActionType.Construct``1(TinyLife.Actions.ActionInfo,TinyLife.Actions.ActionArgument[])
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_Construct__1_TinyLife_Actions_ActionInfo_TinyLife_Actions_ActionArgument___
name: Construct(ActionInfo, params ActionArgument[])
nameWithType: ActionType.Construct(ActionInfo, params ActionArgument[])
fullName: TinyLife.Actions.ActionType.Construct(TinyLife.Actions.ActionInfo, params TinyLife.Actions.ActionArgument[])
nameWithType.vb: ActionType.Construct(Of T)(ActionInfo, ParamArray ActionArgument())
fullName.vb: TinyLife.Actions.ActionType.Construct(Of T)(TinyLife.Actions.ActionInfo, ParamArray TinyLife.Actions.ActionArgument())
name.vb: Construct(Of T)(ActionInfo, ParamArray ActionArgument())
spec.csharp:
- uid: TinyLife.Actions.ActionType.Construct``1(TinyLife.Actions.ActionInfo,TinyLife.Actions.ActionArgument[])
name: Construct
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_Construct__1_TinyLife_Actions_ActionInfo_TinyLife_Actions_ActionArgument___
- name: <
- name: T
- name: '>'
- name: (
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: ','
- name: " "
- name: params
- name: " "
- uid: TinyLife.Actions.ActionArgument
name: ActionArgument
href: TinyLife.Actions.ActionArgument.html
- name: '['
- name: ']'
- name: )
spec.vb:
- uid: TinyLife.Actions.ActionType.Construct``1(TinyLife.Actions.ActionInfo,TinyLife.Actions.ActionArgument[])
name: Construct
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_Construct__1_TinyLife_Actions_ActionInfo_TinyLife_Actions_ActionArgument___
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: ','
- name: " "
- name: ParamArray
- name: " "
- uid: TinyLife.Actions.ActionArgument
name: ActionArgument
href: TinyLife.Actions.ActionArgument.html
- name: (
- name: )
- name: )
- uid: TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Objects.PersonLike
isExternal: true
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_CanExecuteAction_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
name: CanExecuteAction(ActionType, ActionInfo, bool)
nameWithType: PersonLike.CanExecuteAction(ActionType, ActionInfo, bool)
fullName: TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, bool)
nameWithType.vb: PersonLike.CanExecuteAction(ActionType, ActionInfo, Boolean)
fullName.vb: TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, Boolean)
name.vb: CanExecuteAction(ActionType, ActionInfo, Boolean)
spec.csharp:
- uid: TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
name: CanExecuteAction
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_CanExecuteAction_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
- name: (
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: ','
- name: " "
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
spec.vb:
- uid: TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
name: CanExecuteAction
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_CanExecuteAction_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
- name: (
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: ','
- name: " "
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: TinyLife.Actions.ActionType.ConstructFully*
commentId: Overload:TinyLife.Actions.ActionType.ConstructFully
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_ConstructFully__1_TinyLife_Actions_ActionInfo_System_Boolean_System_Boolean_TinyLife_Actions_ActionArgument___
name: ConstructFully
nameWithType: ActionType.ConstructFully
fullName: TinyLife.Actions.ActionType.ConstructFully
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
- uid: TinyLife.Objects.PersonLike
commentId: T:TinyLife.Objects.PersonLike
parent: TinyLife.Objects
href: TinyLife.Objects.PersonLike.html
name: PersonLike
nameWithType: PersonLike
fullName: TinyLife.Objects.PersonLike
- uid: TinyLife.Objects
commentId: N:TinyLife.Objects
href: TinyLife.html
name: TinyLife.Objects
nameWithType: TinyLife.Objects
fullName: TinyLife.Objects
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Objects
name: Objects
href: TinyLife.Objects.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Objects
name: Objects
href: TinyLife.Objects.html
- uid: TinyLife.Actions.Action.GetDisplayName
commentId: M:TinyLife.Actions.Action.GetDisplayName
parent: TinyLife.Actions.Action
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_GetDisplayName
name: GetDisplayName()
nameWithType: Action.GetDisplayName()
fullName: TinyLife.Actions.Action.GetDisplayName()
spec.csharp:
- uid: TinyLife.Actions.Action.GetDisplayName
name: GetDisplayName
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_GetDisplayName
- name: (
- name: )
spec.vb:
- uid: TinyLife.Actions.Action.GetDisplayName
name: GetDisplayName
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_GetDisplayName
- name: (
- name: )
- uid: TinyLife.Actions.ActionType.GetIconName(TinyLife.Actions.ActionInfo)
commentId: M:TinyLife.Actions.ActionType.GetIconName(TinyLife.Actions.ActionInfo)
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_GetIconName_TinyLife_Actions_ActionInfo_
name: GetIconName(ActionInfo)
nameWithType: ActionType.GetIconName(ActionInfo)
fullName: TinyLife.Actions.ActionType.GetIconName(TinyLife.Actions.ActionInfo)
spec.csharp:
- uid: TinyLife.Actions.ActionType.GetIconName(TinyLife.Actions.ActionInfo)
name: GetIconName
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_GetIconName_TinyLife_Actions_ActionInfo_
- name: (
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: )
spec.vb:
- uid: TinyLife.Actions.ActionType.GetIconName(TinyLife.Actions.ActionInfo)
name: GetIconName
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_GetIconName_TinyLife_Actions_ActionInfo_
- name: (
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: )
- uid: TinyLife.Actions.ActionType.GetDisplayName*
commentId: Overload:TinyLife.Actions.ActionType.GetDisplayName
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_GetDisplayName_TinyLife_Actions_ActionInfo_System_Boolean_
name: GetDisplayName
nameWithType: ActionType.GetDisplayName
fullName: TinyLife.Actions.ActionType.GetDisplayName
- uid: TinyLife.Actions.ActionType.IsActionType*
commentId: Overload:TinyLife.Actions.ActionType.IsActionType
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_IsActionType_System_Type_
name: IsActionType
nameWithType: ActionType.IsActionType
fullName: TinyLife.Actions.ActionType.IsActionType
- uid: System.Type
commentId: T:System.Type
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.type
name: Type
nameWithType: Type
fullName: System.Type
- uid: TinyLife.Actions.ActionType.TypeSettings.IconName
commentId: F:TinyLife.Actions.ActionType.TypeSettings.IconName
href: TinyLife.Actions.ActionType.TypeSettings.html#TinyLife_Actions_ActionType_TypeSettings_IconName
name: IconName
nameWithType: ActionType.TypeSettings.IconName
fullName: TinyLife.Actions.ActionType.TypeSettings.IconName
- uid: TinyLife.Actions.ActionType.TypeSettings.RequiredSkill
commentId: F:TinyLife.Actions.ActionType.TypeSettings.RequiredSkill
href: TinyLife.Actions.ActionType.TypeSettings.html#TinyLife_Actions_ActionType_TypeSettings_RequiredSkill
name: RequiredSkill
nameWithType: ActionType.TypeSettings.RequiredSkill
fullName: TinyLife.Actions.ActionType.TypeSettings.RequiredSkill
- uid: TinyLife.Actions.ActionType.TypeSettings.RequiredEmotion
commentId: F:TinyLife.Actions.ActionType.TypeSettings.RequiredEmotion
href: TinyLife.Actions.ActionType.TypeSettings.html#TinyLife_Actions_ActionType_TypeSettings_RequiredEmotion
name: RequiredEmotion
nameWithType: ActionType.TypeSettings.RequiredEmotion
fullName: TinyLife.Actions.ActionType.TypeSettings.RequiredEmotion
- uid: TinyLife.Actions.ActionType.TypeSettings.RequiredPersonality
commentId: F:TinyLife.Actions.ActionType.TypeSettings.RequiredPersonality
href: TinyLife.Actions.ActionType.TypeSettings.html#TinyLife_Actions_ActionType_TypeSettings_RequiredPersonality
name: RequiredPersonality
nameWithType: ActionType.TypeSettings.RequiredPersonality
fullName: TinyLife.Actions.ActionType.TypeSettings.RequiredPersonality
- uid: MLEM.Ui.Elements.Paragraph
commentId: T:MLEM.Ui.Elements.Paragraph
parent: MLEM.Ui.Elements
isExternal: true
name: Paragraph
nameWithType: Paragraph
fullName: MLEM.Ui.Elements.Paragraph
- uid: MLEM.Formatting.Codes.ImageCode
commentId: T:MLEM.Formatting.Codes.ImageCode
isExternal: true
name: ImageCode
nameWithType: ImageCode
fullName: MLEM.Formatting.Codes.ImageCode
- uid: TinyLife.Actions.ActionType.GetIconName*
commentId: Overload:TinyLife.Actions.ActionType.GetIconName
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_GetIconName_TinyLife_Actions_ActionInfo_
name: GetIconName
nameWithType: ActionType.GetIconName
fullName: TinyLife.Actions.ActionType.GetIconName
- uid: MLEM.Ui.Elements
commentId: N:MLEM.Ui.Elements
isExternal: true
name: MLEM.Ui.Elements
nameWithType: MLEM.Ui.Elements
fullName: MLEM.Ui.Elements
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
- uid: TinyLife.Actions.ActionType.TypeSettings.PossibleArguments
commentId: F:TinyLife.Actions.ActionType.TypeSettings.PossibleArguments
href: TinyLife.Actions.ActionType.TypeSettings.html#TinyLife_Actions_ActionType_TypeSettings_PossibleArguments
name: PossibleArguments
nameWithType: ActionType.TypeSettings.PossibleArguments
fullName: TinyLife.Actions.ActionType.TypeSettings.PossibleArguments
- uid: TinyLife.Actions.Action.GetRandomValidArguments(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
commentId: M:TinyLife.Actions.Action.GetRandomValidArguments(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
parent: TinyLife.Actions.Action
isExternal: true
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_GetRandomValidArguments_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
name: GetRandomValidArguments(ActionType, ActionInfo, bool)
nameWithType: Action.GetRandomValidArguments(ActionType, ActionInfo, bool)
fullName: TinyLife.Actions.Action.GetRandomValidArguments(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, bool)
nameWithType.vb: Action.GetRandomValidArguments(ActionType, ActionInfo, Boolean)
fullName.vb: TinyLife.Actions.Action.GetRandomValidArguments(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, Boolean)
name.vb: GetRandomValidArguments(ActionType, ActionInfo, Boolean)
spec.csharp:
- uid: TinyLife.Actions.Action.GetRandomValidArguments(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
name: GetRandomValidArguments
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_GetRandomValidArguments_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
- name: (
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: ','
- name: " "
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
spec.vb:
- uid: TinyLife.Actions.Action.GetRandomValidArguments(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
name: GetRandomValidArguments
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_GetRandomValidArguments_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
- name: (
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: ','
- name: " "
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: TinyLife.Actions.ActionType.GetPossibleArguments*
commentId: Overload:TinyLife.Actions.ActionType.GetPossibleArguments
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_GetPossibleArguments_TinyLife_Actions_ActionInfo_System_Boolean_
name: GetPossibleArguments
nameWithType: ActionType.GetPossibleArguments
fullName: TinyLife.Actions.ActionType.GetPossibleArguments
- uid: System.Collections.Generic.IEnumerable{TinyLife.Actions.ActionArgument}
commentId: T:System.Collections.Generic.IEnumerable{TinyLife.Actions.ActionArgument}
parent: System.Collections.Generic
definition: System.Collections.Generic.IEnumerable`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name: IEnumerable
nameWithType: IEnumerable
fullName: System.Collections.Generic.IEnumerable
nameWithType.vb: IEnumerable(Of ActionArgument)
fullName.vb: System.Collections.Generic.IEnumerable(Of TinyLife.Actions.ActionArgument)
name.vb: IEnumerable(Of ActionArgument)
spec.csharp:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: <
- uid: TinyLife.Actions.ActionArgument
name: ActionArgument
href: TinyLife.Actions.ActionArgument.html
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.ActionArgument
name: ActionArgument
href: TinyLife.Actions.ActionArgument.html
- name: )
- uid: System.Collections.Generic.IEnumerable`1
commentId: T:System.Collections.Generic.IEnumerable`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name: IEnumerable
nameWithType: IEnumerable
fullName: System.Collections.Generic.IEnumerable
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
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic
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
- uid: TinyLife.Actions.ActionType.Register*
commentId: Overload:TinyLife.Actions.ActionType.Register
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_Register_TinyLife_Actions_ActionType_TypeSettings_
name: Register
nameWithType: ActionType.Register
fullName: TinyLife.Actions.ActionType.Register
- uid: TinyLife.Actions.ActionType[]
isExternal: true
href: TinyLife.Actions.ActionType.html
name: ActionType[]
nameWithType: ActionType[]
fullName: TinyLife.Actions.ActionType[]
nameWithType.vb: ActionType()
fullName.vb: TinyLife.Actions.ActionType()
name.vb: ActionType()
spec.csharp:
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: '['
- name: ']'
spec.vb:
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: (
- name: )
- uid: TinyLife.Actions.ActionType.CanExecuteDelegate
commentId: T:TinyLife.Actions.ActionType.CanExecuteDelegate
parent: TinyLife.Actions
href: TinyLife.Actions.ActionType.html
name: ActionType.CanExecuteDelegate
nameWithType: ActionType.CanExecuteDelegate
fullName: TinyLife.Actions.ActionType.CanExecuteDelegate
spec.csharp:
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: .
- uid: TinyLife.Actions.ActionType.CanExecuteDelegate
name: CanExecuteDelegate
href: TinyLife.Actions.ActionType.CanExecuteDelegate.html
spec.vb:
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: .
- uid: TinyLife.Actions.ActionType.CanExecuteDelegate
name: CanExecuteDelegate
href: TinyLife.Actions.ActionType.CanExecuteDelegate.html
- uid: TinyLife.Actions.CanExecuteResult.Valid
commentId: F:TinyLife.Actions.CanExecuteResult.Valid
href: TinyLife.Actions.CanExecuteResult.html#TinyLife_Actions_CanExecuteResult_Valid
name: Valid
nameWithType: CanExecuteResult.Valid
fullName: TinyLife.Actions.CanExecuteResult.Valid
- uid: TinyLife.Actions.ActionType.Eat
commentId: F:TinyLife.Actions.ActionType.Eat
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_Eat
name: Eat
nameWithType: ActionType.Eat
fullName: TinyLife.Actions.ActionType.Eat
- uid: TinyLife.Actions.Action.PickUpAndGoTo(TinyLife.Actions.ActionInfo,TinyLife.Objects.ObjectCategory,TinyLife.Objects.ObjectCategory,System.Boolean)
commentId: M:TinyLife.Actions.Action.PickUpAndGoTo(TinyLife.Actions.ActionInfo,TinyLife.Objects.ObjectCategory,TinyLife.Objects.ObjectCategory,System.Boolean)
parent: TinyLife.Actions.Action
isExternal: true
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_PickUpAndGoTo_TinyLife_Actions_ActionInfo_TinyLife_Objects_ObjectCategory_TinyLife_Objects_ObjectCategory_System_Boolean_
name: PickUpAndGoTo(ActionInfo, ObjectCategory, ObjectCategory, bool)
nameWithType: Action.PickUpAndGoTo(ActionInfo, ObjectCategory, ObjectCategory, bool)
fullName: TinyLife.Actions.Action.PickUpAndGoTo(TinyLife.Actions.ActionInfo, TinyLife.Objects.ObjectCategory, TinyLife.Objects.ObjectCategory, bool)
nameWithType.vb: Action.PickUpAndGoTo(ActionInfo, ObjectCategory, ObjectCategory, Boolean)
fullName.vb: TinyLife.Actions.Action.PickUpAndGoTo(TinyLife.Actions.ActionInfo, TinyLife.Objects.ObjectCategory, TinyLife.Objects.ObjectCategory, Boolean)
name.vb: PickUpAndGoTo(ActionInfo, ObjectCategory, ObjectCategory, Boolean)
spec.csharp:
- uid: TinyLife.Actions.Action.PickUpAndGoTo(TinyLife.Actions.ActionInfo,TinyLife.Objects.ObjectCategory,TinyLife.Objects.ObjectCategory,System.Boolean)
name: PickUpAndGoTo
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_PickUpAndGoTo_TinyLife_Actions_ActionInfo_TinyLife_Objects_ObjectCategory_TinyLife_Objects_ObjectCategory_System_Boolean_
- name: (
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: ','
- name: " "
- uid: TinyLife.Objects.ObjectCategory
name: ObjectCategory
href: TinyLife.Objects.ObjectCategory.html
- name: ','
- name: " "
- uid: TinyLife.Objects.ObjectCategory
name: ObjectCategory
href: TinyLife.Objects.ObjectCategory.html
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
spec.vb:
- uid: TinyLife.Actions.Action.PickUpAndGoTo(TinyLife.Actions.ActionInfo,TinyLife.Objects.ObjectCategory,TinyLife.Objects.ObjectCategory,System.Boolean)
name: PickUpAndGoTo
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_PickUpAndGoTo_TinyLife_Actions_ActionInfo_TinyLife_Objects_ObjectCategory_TinyLife_Objects_ObjectCategory_System_Boolean_
- name: (
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: ','
- name: " "
- uid: TinyLife.Objects.ObjectCategory
name: ObjectCategory
href: TinyLife.Objects.ObjectCategory.html
- name: ','
- name: " "
- uid: TinyLife.Objects.ObjectCategory
name: ObjectCategory
href: TinyLife.Objects.ObjectCategory.html
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: TinyLife.Actions.MultiAction
commentId: T:TinyLife.Actions.MultiAction
parent: TinyLife.Actions
href: TinyLife.Actions.MultiAction.html
name: MultiAction
nameWithType: MultiAction
fullName: TinyLife.Actions.MultiAction
- uid: TinyLife.Actions.CanExecuteResult
commentId: T:TinyLife.Actions.CanExecuteResult
parent: TinyLife.Actions
href: TinyLife.Actions.CanExecuteResult.html
name: CanExecuteResult
nameWithType: CanExecuteResult
fullName: TinyLife.Actions.CanExecuteResult
- uid: TinyLife.Actions.ActionInfo.GetInvolvedObjects``1(TinyLife.Objects.ObjectCategory,System.Boolean,System.Boolean)
commentId: M:TinyLife.Actions.ActionInfo.GetInvolvedObjects``1(TinyLife.Objects.ObjectCategory,System.Boolean,System.Boolean)
isExternal: true
href: TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_GetInvolvedObjects__1_TinyLife_Objects_ObjectCategory_System_Boolean_System_Boolean_
name: GetInvolvedObjects(ObjectCategory, bool, bool)
nameWithType: ActionInfo.GetInvolvedObjects(ObjectCategory, bool, bool)
fullName: TinyLife.Actions.ActionInfo.GetInvolvedObjects(TinyLife.Objects.ObjectCategory, bool, bool)
nameWithType.vb: ActionInfo.GetInvolvedObjects(Of T)(ObjectCategory, Boolean, Boolean)
fullName.vb: TinyLife.Actions.ActionInfo.GetInvolvedObjects(Of T)(TinyLife.Objects.ObjectCategory, Boolean, Boolean)
name.vb: GetInvolvedObjects(Of T)(ObjectCategory, Boolean, Boolean)
spec.csharp:
- uid: TinyLife.Actions.ActionInfo.GetInvolvedObjects``1(TinyLife.Objects.ObjectCategory,System.Boolean,System.Boolean)
name: GetInvolvedObjects
href: TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_GetInvolvedObjects__1_TinyLife_Objects_ObjectCategory_System_Boolean_System_Boolean_
- name: <
- name: T
- name: '>'
- name: (
- uid: TinyLife.Objects.ObjectCategory
name: ObjectCategory
href: TinyLife.Objects.ObjectCategory.html
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
spec.vb:
- uid: TinyLife.Actions.ActionInfo.GetInvolvedObjects``1(TinyLife.Objects.ObjectCategory,System.Boolean,System.Boolean)
name: GetInvolvedObjects
href: TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_GetInvolvedObjects__1_TinyLife_Objects_ObjectCategory_System_Boolean_System_Boolean_
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- uid: TinyLife.Objects.ObjectCategory
name: ObjectCategory
href: TinyLife.Objects.ObjectCategory.html
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: TinyLife.Actions.ActionType.CanPickUpOrIsHoldingForTarget*
commentId: Overload:TinyLife.Actions.ActionType.CanPickUpOrIsHoldingForTarget
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_CanPickUpOrIsHoldingForTarget_TinyLife_Actions_ActionInfo_TinyLife_Objects_ObjectCategory_System_Func_TinyLife_Objects_Furniture_System_Boolean__System_Nullable_TinyLife_Actions_CanExecuteResult__System_Boolean_System_Boolean_
name: CanPickUpOrIsHoldingForTarget
nameWithType: ActionType.CanPickUpOrIsHoldingForTarget
fullName: TinyLife.Actions.ActionType.CanPickUpOrIsHoldingForTarget
- uid: TinyLife.Objects.ObjectCategory
commentId: T:TinyLife.Objects.ObjectCategory
parent: TinyLife.Objects
href: TinyLife.Objects.ObjectCategory.html
name: ObjectCategory
nameWithType: ObjectCategory
fullName: TinyLife.Objects.ObjectCategory
- uid: System.Func{TinyLife.Objects.Furniture,System.Boolean}
commentId: T:System.Func{TinyLife.Objects.Furniture,System.Boolean}
parent: System
definition: System.Func`2
href: https://learn.microsoft.com/dotnet/api/system.func-2
name: Func
nameWithType: Func
fullName: System.Func
nameWithType.vb: Func(Of Furniture, Boolean)
fullName.vb: System.Func(Of TinyLife.Objects.Furniture, Boolean)
name.vb: Func(Of Furniture, Boolean)
spec.csharp:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: <
- uid: TinyLife.Objects.Furniture
name: Furniture
href: TinyLife.Objects.Furniture.html
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: '>'
spec.vb:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: (
- name: Of
- name: " "
- uid: TinyLife.Objects.Furniture
name: Furniture
href: TinyLife.Objects.Furniture.html
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: System.Nullable{TinyLife.Actions.CanExecuteResult}
commentId: T:System.Nullable{TinyLife.Actions.CanExecuteResult}
parent: System
definition: System.Nullable`1
href: TinyLife.Actions.CanExecuteResult.html
name: CanExecuteResult?
nameWithType: CanExecuteResult?
fullName: TinyLife.Actions.CanExecuteResult?
spec.csharp:
- uid: TinyLife.Actions.CanExecuteResult
name: CanExecuteResult
href: TinyLife.Actions.CanExecuteResult.html
- name: '?'
spec.vb:
- uid: TinyLife.Actions.CanExecuteResult
name: CanExecuteResult
href: TinyLife.Actions.CanExecuteResult.html
- name: '?'
- uid: System.Func`2
commentId: T:System.Func`2
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
name: Func
nameWithType: Func
fullName: System.Func
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
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: <
- name: T
- name: ','
- name: " "
- name: TResult
- name: '>'
spec.vb:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: (
- name: Of
- name: " "
- name: T
- name: ','
- name: " "
- name: TResult
- name: )
- uid: System.Nullable`1
commentId: T:System.Nullable`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
name: Nullable
nameWithType: Nullable
fullName: System.Nullable
nameWithType.vb: Nullable(Of T)
fullName.vb: System.Nullable(Of T)
name.vb: Nullable(Of T)
spec.csharp:
- uid: System.Nullable`1
name: Nullable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Nullable`1
name: Nullable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Func{System.ValueTuple{TinyLife.Objects.Furniture,TinyLife.Objects.Furniture},System.Boolean}
commentId: T:System.Func{System.ValueTuple{TinyLife.Objects.Furniture,TinyLife.Objects.Furniture},System.Boolean}
parent: System
definition: System.Func`2
href: https://learn.microsoft.com/dotnet/api/system.func-2
name: Func<(Furniture Parent, Furniture Item), bool>
nameWithType: Func<(Furniture Parent, Furniture Item), bool>
fullName: System.Func<(TinyLife.Objects.Furniture Parent, TinyLife.Objects.Furniture Item), bool>
nameWithType.vb: Func(Of (Parent As Furniture, Item As Furniture), Boolean)
fullName.vb: System.Func(Of (Parent As TinyLife.Objects.Furniture, Item As TinyLife.Objects.Furniture), Boolean)
name.vb: Func(Of (Parent As Furniture, Item As Furniture), Boolean)
spec.csharp:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: <
- name: (
- uid: TinyLife.Objects.Furniture
name: Furniture
href: TinyLife.Objects.Furniture.html
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.Furniture,TinyLife.Objects.Furniture}.Parent
name: Parent
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.furniture,tinylife.objects.furniture-.parent
- name: ','
- name: " "
- uid: TinyLife.Objects.Furniture
name: Furniture
href: TinyLife.Objects.Furniture.html
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.Furniture,TinyLife.Objects.Furniture}.Item
name: Item
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.furniture,tinylife.objects.furniture-.item
- name: )
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: '>'
spec.vb:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: (
- name: Of
- name: " "
- name: (
- uid: System.ValueTuple{TinyLife.Objects.Furniture,TinyLife.Objects.Furniture}.Parent
name: Parent
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.furniture,tinylife.objects.furniture-.parent
- name: " "
- name: As
- name: " "
- uid: TinyLife.Objects.Furniture
name: Furniture
href: TinyLife.Objects.Furniture.html
- name: ','
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.Furniture,TinyLife.Objects.Furniture}.Item
name: Item
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.furniture,tinylife.objects.furniture-.item
- name: " "
- name: As
- name: " "
- uid: TinyLife.Objects.Furniture
name: Furniture
href: TinyLife.Objects.Furniture.html
- name: )
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: TinyLife.Actions.ActionType.AskToTaste
commentId: F:TinyLife.Actions.ActionType.AskToTaste
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_AskToTaste
name: AskToTaste
nameWithType: ActionType.AskToTaste
fullName: TinyLife.Actions.ActionType.AskToTaste
- uid: System.Func{System.ValueTuple{TinyLife.Objects.PersonLike,TinyLife.Objects.Furniture},System.Boolean}
commentId: T:System.Func{System.ValueTuple{TinyLife.Objects.PersonLike,TinyLife.Objects.Furniture},System.Boolean}
parent: System
definition: System.Func`2
href: https://learn.microsoft.com/dotnet/api/system.func-2
name: Func<(PersonLike Person, Furniture Item), bool>
nameWithType: Func<(PersonLike Person, Furniture Item), bool>
fullName: System.Func<(TinyLife.Objects.PersonLike Person, TinyLife.Objects.Furniture Item), bool>
nameWithType.vb: Func(Of (Person As PersonLike, Item As Furniture), Boolean)
fullName.vb: System.Func(Of (Person As TinyLife.Objects.PersonLike, Item As TinyLife.Objects.Furniture), Boolean)
name.vb: Func(Of (Person As PersonLike, Item As Furniture), Boolean)
spec.csharp:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: <
- name: (
- uid: TinyLife.Objects.PersonLike
name: PersonLike
href: TinyLife.Objects.PersonLike.html
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.PersonLike,TinyLife.Objects.Furniture}.Person
name: Person
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.personlike,tinylife.objects.furniture-.person
- name: ','
- name: " "
- uid: TinyLife.Objects.Furniture
name: Furniture
href: TinyLife.Objects.Furniture.html
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.PersonLike,TinyLife.Objects.Furniture}.Item
name: Item
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.personlike,tinylife.objects.furniture-.item
- name: )
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: '>'
spec.vb:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: (
- name: Of
- name: " "
- name: (
- uid: System.ValueTuple{TinyLife.Objects.PersonLike,TinyLife.Objects.Furniture}.Person
name: Person
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.personlike,tinylife.objects.furniture-.person
- name: " "
- name: As
- name: " "
- uid: TinyLife.Objects.PersonLike
name: PersonLike
href: TinyLife.Objects.PersonLike.html
- name: ','
- name: " "
- uid: System.ValueTuple{TinyLife.Objects.PersonLike,TinyLife.Objects.Furniture}.Item
name: Item
href: https://learn.microsoft.com/dotnet/api/system.valuetuple-tinylife.objects.personlike,tinylife.objects.furniture-.item
- name: " "
- name: As
- name: " "
- uid: TinyLife.Objects.Furniture
name: Furniture
href: TinyLife.Objects.Furniture.html
- name: )
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: )
- uid: TinyLife.Actions.ActionType.TypeSettings.CanExecute
commentId: F:TinyLife.Actions.ActionType.TypeSettings.CanExecute
href: TinyLife.Actions.ActionType.TypeSettings.html#TinyLife_Actions_ActionType_TypeSettings_CanExecute
name: CanExecute
nameWithType: ActionType.TypeSettings.CanExecute
fullName: TinyLife.Actions.ActionType.TypeSettings.CanExecute
- uid: TinyLife.Actions.CanExecuteResult.ResultType.Invalid
commentId: F:TinyLife.Actions.CanExecuteResult.ResultType.Invalid
href: TinyLife.Actions.CanExecuteResult.ResultType.html#TinyLife_Actions_CanExecuteResult_ResultType_Invalid
name: Invalid
nameWithType: CanExecuteResult.ResultType.Invalid
fullName: TinyLife.Actions.CanExecuteResult.ResultType.Invalid
- uid: TinyLife.Actions.ActionType.HasChairOrIsStandingDesk*
commentId: Overload:TinyLife.Actions.ActionType.HasChairOrIsStandingDesk
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_HasChairOrIsStandingDesk_TinyLife_Actions_ActionInfo_System_Boolean_
name: HasChairOrIsStandingDesk
nameWithType: ActionType.HasChairOrIsStandingDesk
fullName: TinyLife.Actions.ActionType.HasChairOrIsStandingDesk
- uid: TinyLife.PersonalityType.Mean
commentId: F:TinyLife.PersonalityType.Mean
href: TinyLife.PersonalityType.html#TinyLife_PersonalityType_Mean
name: Mean
nameWithType: PersonalityType.Mean
fullName: TinyLife.PersonalityType.Mean
- uid: TinyLife.RelationshipType.Disliked
commentId: F:TinyLife.RelationshipType.Disliked
href: TinyLife.RelationshipType.html#TinyLife_RelationshipType_Disliked
name: Disliked
nameWithType: RelationshipType.Disliked
fullName: TinyLife.RelationshipType.Disliked
- uid: TinyLife.Objects.PersonLike.Emotion
commentId: P:TinyLife.Objects.PersonLike.Emotion
parent: TinyLife.Objects.PersonLike
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_Emotion
name: Emotion
nameWithType: PersonLike.Emotion
fullName: TinyLife.Objects.PersonLike.Emotion
- uid: TinyLife.Emotions.EmotionType.Angry
commentId: F:TinyLife.Emotions.EmotionType.Angry
href: TinyLife.Emotions.EmotionType.html#TinyLife_Emotions_EmotionType_Angry
name: Angry
nameWithType: EmotionType.Angry
fullName: TinyLife.Emotions.EmotionType.Angry
- uid: TinyLife.Actions.CanExecuteResult.Hidden
commentId: F:TinyLife.Actions.CanExecuteResult.Hidden
href: TinyLife.Actions.CanExecuteResult.html#TinyLife_Actions_CanExecuteResult_Hidden
name: Hidden
nameWithType: CanExecuteResult.Hidden
fullName: TinyLife.Actions.CanExecuteResult.Hidden
- uid: TinyLife.Actions.ActionType.IsDislikedOrMean*
commentId: Overload:TinyLife.Actions.ActionType.IsDislikedOrMean
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_IsDislikedOrMean_TinyLife_Actions_ActionInfo_System_Boolean_
name: IsDislikedOrMean
nameWithType: ActionType.IsDislikedOrMean
fullName: TinyLife.Actions.ActionType.IsDislikedOrMean
- uid: TinyLife.Actions.ActionInfo.Person
commentId: P:TinyLife.Actions.ActionInfo.Person
href: TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_Person
name: Person
nameWithType: ActionInfo.Person
fullName: TinyLife.Actions.ActionInfo.Person
- uid: TinyLife.GenealogyType.Unrelated
commentId: F:TinyLife.GenealogyType.Unrelated
href: TinyLife.GenealogyType.html#TinyLife_GenealogyType_Unrelated
name: Unrelated
nameWithType: GenealogyType.Unrelated
fullName: TinyLife.GenealogyType.Unrelated
- uid: TinyLife.Objects.AgeGroup.Adult
commentId: F:TinyLife.Objects.AgeGroup.Adult
href: TinyLife.Objects.AgeGroup.html#TinyLife_Objects_AgeGroup_Adult
name: Adult
nameWithType: AgeGroup.Adult
fullName: TinyLife.Objects.AgeGroup.Adult
- uid: TinyLife.Relationship.FriendLevel
commentId: P:TinyLife.Relationship.FriendLevel
href: TinyLife.Relationship.html#TinyLife_Relationship_FriendLevel
name: FriendLevel
nameWithType: Relationship.FriendLevel
fullName: TinyLife.Relationship.FriendLevel
- uid: TinyLife.PerSaveOptions.AiRelationships
commentId: F:TinyLife.PerSaveOptions.AiRelationships
href: TinyLife.PerSaveOptions.html#TinyLife_PerSaveOptions_AiRelationships
name: AiRelationships
nameWithType: PerSaveOptions.AiRelationships
fullName: TinyLife.PerSaveOptions.AiRelationships
- uid: TinyLife.Emotions.EmotionType.Sad
commentId: F:TinyLife.Emotions.EmotionType.Sad
href: TinyLife.Emotions.EmotionType.html#TinyLife_Emotions_EmotionType_Sad
name: Sad
nameWithType: EmotionType.Sad
fullName: TinyLife.Emotions.EmotionType.Sad
- uid: TinyLife.Actions.SocialAction
commentId: T:TinyLife.Actions.SocialAction
parent: TinyLife.Actions
href: TinyLife.Actions.SocialAction.html
name: SocialAction
nameWithType: SocialAction
fullName: TinyLife.Actions.SocialAction
- uid: TinyLife.Actions.ActionType.IsReadyForRomance*
commentId: Overload:TinyLife.Actions.ActionType.IsReadyForRomance
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_IsReadyForRomance_TinyLife_Actions_ActionInfo_System_Boolean_
name: IsReadyForRomance
nameWithType: ActionType.IsReadyForRomance
fullName: TinyLife.Actions.ActionType.IsReadyForRomance
- uid: System.ArgumentOutOfRangeException
commentId: T:System.ArgumentOutOfRangeException
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception
name: ArgumentOutOfRangeException
nameWithType: ArgumentOutOfRangeException
fullName: System.ArgumentOutOfRangeException
- uid: TinyLife.Actions.ActionType.IsNotEmotional*
commentId: Overload:TinyLife.Actions.ActionType.IsNotEmotional
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_IsNotEmotional_TinyLife_Actions_ActionInfo_TinyLife_Emotions_EmotionType___
name: IsNotEmotional
nameWithType: ActionType.IsNotEmotional
fullName: TinyLife.Actions.ActionType.IsNotEmotional
- uid: TinyLife.Emotions.EmotionType[]
isExternal: true
href: TinyLife.Emotions.EmotionType.html
name: EmotionType[]
nameWithType: EmotionType[]
fullName: TinyLife.Emotions.EmotionType[]
nameWithType.vb: EmotionType()
fullName.vb: TinyLife.Emotions.EmotionType()
name.vb: EmotionType()
spec.csharp:
- uid: TinyLife.Emotions.EmotionType
name: EmotionType
href: TinyLife.Emotions.EmotionType.html
- name: '['
- name: ']'
spec.vb:
- uid: TinyLife.Emotions.EmotionType
name: EmotionType
href: TinyLife.Emotions.EmotionType.html
- name: (
- name: )
- uid: TinyLife.Actions.ActionType.IsEmptyHanded*
commentId: Overload:TinyLife.Actions.ActionType.IsEmptyHanded
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_IsEmptyHanded_TinyLife_Actions_ActionInfo_System_Boolean_
name: IsEmptyHanded
nameWithType: ActionType.IsEmptyHanded
fullName: TinyLife.Actions.ActionType.IsEmptyHanded
- uid: TinyLife.Actions.ActionType.IsNotHoldingPerson*
commentId: Overload:TinyLife.Actions.ActionType.IsNotHoldingPerson
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_IsNotHoldingPerson_TinyLife_Actions_ActionInfo_System_Boolean_
name: IsNotHoldingPerson
nameWithType: ActionType.IsNotHoldingPerson
fullName: TinyLife.Actions.ActionType.IsNotHoldingPerson
- uid: TinyLife.Actions.ActionType.IsNotExpired*
commentId: Overload:TinyLife.Actions.ActionType.IsNotExpired
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_IsNotExpired_TinyLife_Actions_ActionInfo_System_Boolean_
name: IsNotExpired
nameWithType: ActionType.IsNotExpired
fullName: TinyLife.Actions.ActionType.IsNotExpired
- uid: TinyLife.PerSaveOptions.AiImportantActions
commentId: F:TinyLife.PerSaveOptions.AiImportantActions
href: TinyLife.PerSaveOptions.html#TinyLife_PerSaveOptions_AiImportantActions
name: AiImportantActions
nameWithType: PerSaveOptions.AiImportantActions
fullName: TinyLife.PerSaveOptions.AiImportantActions
- uid: TinyLife.Actions.ActionType.CanDoImportantAction*
commentId: Overload:TinyLife.Actions.ActionType.CanDoImportantAction
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_CanDoImportantAction_TinyLife_Actions_ActionInfo_System_Boolean_
name: CanDoImportantAction
nameWithType: ActionType.CanDoImportantAction
fullName: TinyLife.Actions.ActionType.CanDoImportantAction
- uid: TinyLife.Actions.TalkAction
commentId: T:TinyLife.Actions.TalkAction
href: TinyLife.Actions.TalkAction.html
name: TalkAction
nameWithType: TalkAction
fullName: TinyLife.Actions.TalkAction
- uid: TinyLife.Actions.ActionType.CanDoSocialAction*
commentId: Overload:TinyLife.Actions.ActionType.CanDoSocialAction
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_CanDoSocialAction_TinyLife_Actions_ActionInfo_System_Boolean_
name: CanDoSocialAction
nameWithType: ActionType.CanDoSocialAction
fullName: TinyLife.Actions.ActionType.CanDoSocialAction
- uid: TinyLife.Actions.ActionType.AreDating*
commentId: Overload:TinyLife.Actions.ActionType.AreDating
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_AreDating_TinyLife_Actions_ActionInfo_System_Boolean_
name: AreDating
nameWithType: ActionType.AreDating
fullName: TinyLife.Actions.ActionType.AreDating
- uid: TinyLife.Actions.ActionType.CanExecuteAll*
commentId: Overload:TinyLife.Actions.ActionType.CanExecuteAll
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_CanExecuteAll_TinyLife_Actions_ActionInfo_System_Boolean_TinyLife_Actions_ActionType_CanExecuteDelegate___
name: CanExecuteAll
nameWithType: ActionType.CanExecuteAll
fullName: TinyLife.Actions.ActionType.CanExecuteAll
- uid: TinyLife.Actions.ActionType.CanExecuteDelegate[]
isExternal: true
href: TinyLife.Actions.ActionType.CanExecuteDelegate.html
name: CanExecuteDelegate[]
nameWithType: ActionType.CanExecuteDelegate[]
fullName: TinyLife.Actions.ActionType.CanExecuteDelegate[]
nameWithType.vb: ActionType.CanExecuteDelegate()
fullName.vb: TinyLife.Actions.ActionType.CanExecuteDelegate()
name.vb: CanExecuteDelegate()
spec.csharp:
- uid: TinyLife.Actions.ActionType.CanExecuteDelegate
name: CanExecuteDelegate
href: TinyLife.Actions.ActionType.CanExecuteDelegate.html
- name: '['
- name: ']'
spec.vb:
- uid: TinyLife.Actions.ActionType.CanExecuteDelegate
name: CanExecuteDelegate
href: TinyLife.Actions.ActionType.CanExecuteDelegate.html
- name: (
- name: )
- uid: TinyLife.Objects.AgeGroup.Child
commentId: F:TinyLife.Objects.AgeGroup.Child
href: TinyLife.Objects.AgeGroup.html#TinyLife_Objects_AgeGroup_Child
name: Child
nameWithType: AgeGroup.Child
fullName: TinyLife.Objects.AgeGroup.Child
- uid: TinyLife.PersonalityType.Asexual
commentId: F:TinyLife.PersonalityType.Asexual
href: TinyLife.PersonalityType.html#TinyLife_PersonalityType_Asexual
name: Asexual
nameWithType: PersonalityType.Asexual
fullName: TinyLife.PersonalityType.Asexual
- uid: TinyLife.Actions.ActionType.CanBeSexual*
commentId: Overload:TinyLife.Actions.ActionType.CanBeSexual
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_CanBeSexual_TinyLife_Actions_ActionInfo_System_Boolean_
name: CanBeSexual
nameWithType: ActionType.CanBeSexual
fullName: TinyLife.Actions.ActionType.CanBeSexual
- uid: TinyLife.World.Household
commentId: T:TinyLife.World.Household
parent: TinyLife.World
href: TinyLife.World.Household.html
name: Household
nameWithType: Household
fullName: TinyLife.World.Household
- uid: TinyLife.Actions.ActionType.HasSpaceInHousehold*
commentId: Overload:TinyLife.Actions.ActionType.HasSpaceInHousehold
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_HasSpaceInHousehold_TinyLife_Actions_ActionInfo_System_Boolean_
name: HasSpaceInHousehold
nameWithType: ActionType.HasSpaceInHousehold
fullName: TinyLife.Actions.ActionType.HasSpaceInHousehold
- uid: TinyLife.World
commentId: N:TinyLife.World
href: TinyLife.html
name: TinyLife.World
nameWithType: TinyLife.World
fullName: TinyLife.World
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.World
name: World
href: TinyLife.World.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.World
name: World
href: TinyLife.World.html
- uid: TinyLife.Actions.ActionType.IsNotPregnant*
commentId: Overload:TinyLife.Actions.ActionType.IsNotPregnant
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_IsNotPregnant_TinyLife_Actions_ActionInfo_System_Boolean_
name: IsNotPregnant
nameWithType: ActionType.IsNotPregnant
fullName: TinyLife.Actions.ActionType.IsNotPregnant
- uid: TinyLife.PersonalityType
commentId: T:TinyLife.PersonalityType
parent: TinyLife
href: TinyLife.PersonalityType.html
name: PersonalityType
nameWithType: PersonalityType
fullName: TinyLife.PersonalityType
- uid: TinyLife.Goals.Job
commentId: T:TinyLife.Goals.Job
parent: TinyLife.Goals
href: TinyLife.Goals.Job.html
name: Job
nameWithType: Job
fullName: TinyLife.Goals.Job
- uid: TinyLife.Skills.Skill
commentId: T:TinyLife.Skills.Skill
parent: TinyLife.Skills
href: TinyLife.Skills.Skill.html
name: Skill
nameWithType: Skill
fullName: TinyLife.Skills.Skill
- uid: TinyLife.Actions.ActionType.AiSettings.PassivePriority
commentId: F:TinyLife.Actions.ActionType.AiSettings.PassivePriority
href: TinyLife.Actions.ActionType.AiSettings.html#TinyLife_Actions_ActionType_AiSettings_PassivePriority
name: PassivePriority
nameWithType: ActionType.AiSettings.PassivePriority
fullName: TinyLife.Actions.ActionType.AiSettings.PassivePriority
- uid: TinyLife.Actions.ActionType.PracticeWriting
commentId: F:TinyLife.Actions.ActionType.PracticeWriting
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_PracticeWriting
name: PracticeWriting
nameWithType: ActionType.PracticeWriting
fullName: TinyLife.Actions.ActionType.PracticeWriting
- uid: TinyLife.Actions.ActionType.PracticeProgramming
commentId: F:TinyLife.Actions.ActionType.PracticeProgramming
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_PracticeProgramming
name: PracticeProgramming
nameWithType: ActionType.PracticeProgramming
fullName: TinyLife.Actions.ActionType.PracticeProgramming
- uid: TinyLife.PerSaveOptions.AiSkillBuilding
commentId: F:TinyLife.PerSaveOptions.AiSkillBuilding
href: TinyLife.PerSaveOptions.html#TinyLife_PerSaveOptions_AiSkillBuilding
name: AiSkillBuilding
nameWithType: PerSaveOptions.AiSkillBuilding
fullName: TinyLife.PerSaveOptions.AiSkillBuilding
- uid: TinyLife.Actions.ActionType.GetSkillPriorityMod*
commentId: Overload:TinyLife.Actions.ActionType.GetSkillPriorityMod
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_GetSkillPriorityMod_TinyLife_Objects_PersonLike_TinyLife_Skills_SkillType_System_Boolean_
name: GetSkillPriorityMod
nameWithType: ActionType.GetSkillPriorityMod
fullName: TinyLife.Actions.ActionType.GetSkillPriorityMod
- uid: TinyLife.Skills.SkillType
commentId: T:TinyLife.Skills.SkillType
parent: TinyLife.Skills
href: TinyLife.Skills.SkillType.html
name: SkillType
nameWithType: SkillType
fullName: TinyLife.Skills.SkillType
- uid: System.Single
commentId: T:System.Single
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
name: float
nameWithType: float
fullName: float
nameWithType.vb: Single
fullName.vb: Single
name.vb: Single
- uid: TinyLife
commentId: N:TinyLife
href: TinyLife.html
name: TinyLife
nameWithType: TinyLife
fullName: TinyLife
- uid: TinyLife.Goals
commentId: N:TinyLife.Goals
href: TinyLife.html
name: TinyLife.Goals
nameWithType: TinyLife.Goals
fullName: TinyLife.Goals
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Goals
name: Goals
href: TinyLife.Goals.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Goals
name: Goals
href: TinyLife.Goals.html
- uid: TinyLife.Skills
commentId: N:TinyLife.Skills
href: TinyLife.html
name: TinyLife.Skills
nameWithType: TinyLife.Skills
fullName: TinyLife.Skills
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Skills
name: Skills
href: TinyLife.Skills.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Skills
name: Skills
href: TinyLife.Skills.html
- uid: TinyLife.Actions.ActionType.TypeSettings.GetDisplayName
commentId: F:TinyLife.Actions.ActionType.TypeSettings.GetDisplayName
href: TinyLife.Actions.ActionType.TypeSettings.html#TinyLife_Actions_ActionType_TypeSettings_GetDisplayName
name: GetDisplayName
nameWithType: ActionType.TypeSettings.GetDisplayName
fullName: TinyLife.Actions.ActionType.TypeSettings.GetDisplayName
- uid: TinyLife.Actions.ActionType.DisplayNameWithPrice*
commentId: Overload:TinyLife.Actions.ActionType.DisplayNameWithPrice
href: TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_DisplayNameWithPrice_System_Func_TinyLife_Actions_ActionInfo_System_Single__
name: DisplayNameWithPrice
nameWithType: ActionType.DisplayNameWithPrice
fullName: TinyLife.Actions.ActionType.DisplayNameWithPrice
- uid: System.Func{TinyLife.Actions.ActionInfo,System.Single}
commentId: T:System.Func{TinyLife.Actions.ActionInfo,System.Single}
parent: System
definition: System.Func`2
href: https://learn.microsoft.com/dotnet/api/system.func-2
name: Func
nameWithType: Func
fullName: System.Func
nameWithType.vb: Func(Of ActionInfo, Single)
fullName.vb: System.Func(Of TinyLife.Actions.ActionInfo, Single)
name.vb: Func(Of ActionInfo, Single)
spec.csharp:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: <
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: '>'
spec.vb:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: )
- uid: System.Func{System.String,TinyLife.Actions.ActionInfo,System.String}
commentId: T:System.Func{System.String,TinyLife.Actions.ActionInfo,System.String}
parent: System
definition: System.Func`3
href: https://learn.microsoft.com/dotnet/api/system.func-3
name: Func
nameWithType: Func
fullName: System.Func
nameWithType.vb: Func(Of String, ActionInfo, String)
fullName.vb: System.Func(Of String, TinyLife.Actions.ActionInfo, String)
name.vb: Func(Of String, ActionInfo, String)
spec.csharp:
- uid: System.Func`3
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-3
- name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: ','
- name: " "
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: '>'
spec.vb:
- uid: System.Func`3
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-3
- name: (
- name: Of
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: TinyLife.Actions.ActionInfo
name: ActionInfo
href: TinyLife.Actions.ActionInfo.html
- name: ','
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- uid: System.Func`3
commentId: T:System.Func`3
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-3
name: Func
nameWithType: Func
fullName: System.Func
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
href: https://learn.microsoft.com/dotnet/api/system.func-3
- name: <
- name: T1
- name: ','
- name: " "
- name: T2
- name: ','
- name: " "
- name: TResult
- name: '>'
spec.vb:
- uid: System.Func`3
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-3
- name: (
- name: Of
- name: " "
- name: T1
- name: ','
- name: " "
- name: T2
- name: ','
- name: " "
- name: TResult
- name: )