mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-01 03:10:49 +01:00
787 lines
27 KiB
YAML
Generated
787 lines
27 KiB
YAML
Generated
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: TinyLife.Actions.ChoicePromptInfo
|
|
commentId: T:TinyLife.Actions.ChoicePromptInfo
|
|
id: ChoicePromptInfo
|
|
parent: TinyLife.Actions
|
|
children:
|
|
- TinyLife.Actions.ChoicePromptInfo.#ctor(System.String,TinyLife.Actions.ChoicePromptInfo.Option[])
|
|
- TinyLife.Actions.ChoicePromptInfo.CreatePromptContent(TinyLife.Objects.Person,TinyLife.Uis.CoveringGroup)
|
|
- TinyLife.Actions.ChoicePromptInfo.Name
|
|
- TinyLife.Actions.ChoicePromptInfo.Options
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: ChoicePromptInfo
|
|
nameWithType: ChoicePromptInfo
|
|
fullName: TinyLife.Actions.ChoicePromptInfo
|
|
type: Class
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions
|
|
summary: A choice prompt info is a set of data that can be used in <xref href="TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.Actions.ChoicePromptInfo)" data-throw-if-not-resolved="false"></xref> to display a set of options to the player, one of which is randomly chosen to be "correct", causing a positive effect to happen. Choice prompts are used by <xref href="TinyLife.Goals.JobType" data-throw-if-not-resolved="false"></xref>, but can also be used in custom circumstances.
|
|
example: []
|
|
syntax:
|
|
content: public class ChoicePromptInfo
|
|
content.vb: Public Class ChoicePromptInfo
|
|
inheritance:
|
|
- System.Object
|
|
inheritedMembers:
|
|
- System.Object.Equals(System.Object)
|
|
- System.Object.Equals(System.Object,System.Object)
|
|
- System.Object.GetHashCode
|
|
- System.Object.GetType
|
|
- System.Object.MemberwiseClone
|
|
- System.Object.ReferenceEquals(System.Object,System.Object)
|
|
- System.Object.ToString
|
|
extensionMethods:
|
|
- TinyLife.Actions.ChoicePromptInfo.TinyLife.Utilities.Extensions.JsonCopy``1
|
|
- uid: TinyLife.Actions.ChoicePromptInfo.Name
|
|
commentId: F:TinyLife.Actions.ChoicePromptInfo.Name
|
|
id: Name
|
|
parent: TinyLife.Actions.ChoicePromptInfo
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Name
|
|
nameWithType: ChoicePromptInfo.Name
|
|
fullName: TinyLife.Actions.ChoicePromptInfo.Name
|
|
type: Field
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions
|
|
summary: This choice prompt's name, which will be localized.
|
|
example: []
|
|
syntax:
|
|
content: public readonly string Name
|
|
return:
|
|
type: System.String
|
|
content.vb: Public ReadOnly Name As String
|
|
- uid: TinyLife.Actions.ChoicePromptInfo.Options
|
|
commentId: F:TinyLife.Actions.ChoicePromptInfo.Options
|
|
id: Options
|
|
parent: TinyLife.Actions.ChoicePromptInfo
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Options
|
|
nameWithType: ChoicePromptInfo.Options
|
|
fullName: TinyLife.Actions.ChoicePromptInfo.Options
|
|
type: Field
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions
|
|
summary: This choice prompt's set of <xref href="TinyLife.Actions.ChoicePromptInfo.Option" data-throw-if-not-resolved="false"></xref> instances, one of which will randomly be chosen as the correct option.
|
|
example: []
|
|
syntax:
|
|
content: public readonly ChoicePromptInfo.Option[] Options
|
|
return:
|
|
type: TinyLife.Actions.ChoicePromptInfo.Option[]
|
|
content.vb: Public ReadOnly Options As ChoicePromptInfo.Option()
|
|
- uid: TinyLife.Actions.ChoicePromptInfo.#ctor(System.String,TinyLife.Actions.ChoicePromptInfo.Option[])
|
|
commentId: M:TinyLife.Actions.ChoicePromptInfo.#ctor(System.String,TinyLife.Actions.ChoicePromptInfo.Option[])
|
|
id: '#ctor(System.String,TinyLife.Actions.ChoicePromptInfo.Option[])'
|
|
parent: TinyLife.Actions.ChoicePromptInfo
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: ChoicePromptInfo(string, params Option[])
|
|
nameWithType: ChoicePromptInfo.ChoicePromptInfo(string, params ChoicePromptInfo.Option[])
|
|
fullName: TinyLife.Actions.ChoicePromptInfo.ChoicePromptInfo(string, params TinyLife.Actions.ChoicePromptInfo.Option[])
|
|
type: Constructor
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions
|
|
summary: Creates a new choice prompt info with the given settings.
|
|
example: []
|
|
syntax:
|
|
content: public ChoicePromptInfo(string name, params ChoicePromptInfo.Option[] options)
|
|
parameters:
|
|
- id: name
|
|
type: System.String
|
|
description: This choice prompt's name, which will be localized.
|
|
- id: options
|
|
type: TinyLife.Actions.ChoicePromptInfo.Option[]
|
|
description: This choice prompt's set of <xref href="TinyLife.Actions.ChoicePromptInfo.Option" data-throw-if-not-resolved="false"></xref> instances, one of which will randomly be chosen as the correct option.
|
|
content.vb: Public Sub New(name As String, ParamArray options As ChoicePromptInfo.Option())
|
|
overload: TinyLife.Actions.ChoicePromptInfo.#ctor*
|
|
nameWithType.vb: ChoicePromptInfo.New(String, ParamArray ChoicePromptInfo.Option())
|
|
fullName.vb: TinyLife.Actions.ChoicePromptInfo.New(String, ParamArray TinyLife.Actions.ChoicePromptInfo.Option())
|
|
name.vb: New(String, ParamArray Option())
|
|
- uid: TinyLife.Actions.ChoicePromptInfo.CreatePromptContent(TinyLife.Objects.Person,TinyLife.Uis.CoveringGroup)
|
|
commentId: M:TinyLife.Actions.ChoicePromptInfo.CreatePromptContent(TinyLife.Objects.Person,TinyLife.Uis.CoveringGroup)
|
|
id: CreatePromptContent(TinyLife.Objects.Person,TinyLife.Uis.CoveringGroup)
|
|
parent: TinyLife.Actions.ChoicePromptInfo
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: CreatePromptContent(Person, CoveringGroup)
|
|
nameWithType: ChoicePromptInfo.CreatePromptContent(Person, CoveringGroup)
|
|
fullName: TinyLife.Actions.ChoicePromptInfo.CreatePromptContent(TinyLife.Objects.Person, TinyLife.Uis.CoveringGroup)
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Actions
|
|
summary: Creates the UI content for this choice prompt. This method is mainly used by <xref href="TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.Actions.ChoicePromptInfo)" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public IEnumerable<Element> CreatePromptContent(Person person, CoveringGroup prompt)
|
|
parameters:
|
|
- id: person
|
|
type: TinyLife.Objects.Person
|
|
description: The person that should be affected by this choice prompt.
|
|
- id: prompt
|
|
type: TinyLife.Uis.CoveringGroup
|
|
description: The prompt that should be closed when an option is selected.
|
|
return:
|
|
type: System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}
|
|
description: The elements that make up the choice prompt.
|
|
content.vb: Public Function CreatePromptContent(person As Person, prompt As CoveringGroup) As IEnumerable(Of Element)
|
|
overload: TinyLife.Actions.ChoicePromptInfo.CreatePromptContent*
|
|
references:
|
|
- uid: TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.Actions.ChoicePromptInfo)
|
|
commentId: M:TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.Actions.ChoicePromptInfo)
|
|
parent: TinyLife.Actions.Action
|
|
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_OpenChoicePrompt_TinyLife_Actions_ChoicePromptInfo_
|
|
name: OpenChoicePrompt(ChoicePromptInfo)
|
|
nameWithType: Action.OpenChoicePrompt(ChoicePromptInfo)
|
|
fullName: TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.Actions.ChoicePromptInfo)
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.Actions.ChoicePromptInfo)
|
|
name: OpenChoicePrompt
|
|
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_OpenChoicePrompt_TinyLife_Actions_ChoicePromptInfo_
|
|
- name: (
|
|
- uid: TinyLife.Actions.ChoicePromptInfo
|
|
name: ChoicePromptInfo
|
|
href: TinyLife.Actions.ChoicePromptInfo.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.Actions.ChoicePromptInfo)
|
|
name: OpenChoicePrompt
|
|
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_OpenChoicePrompt_TinyLife_Actions_ChoicePromptInfo_
|
|
- name: (
|
|
- uid: TinyLife.Actions.ChoicePromptInfo
|
|
name: ChoicePromptInfo
|
|
href: TinyLife.Actions.ChoicePromptInfo.html
|
|
- name: )
|
|
- uid: TinyLife.Goals.JobType
|
|
commentId: T:TinyLife.Goals.JobType
|
|
parent: TinyLife.Goals
|
|
href: TinyLife.Goals.JobType.html
|
|
name: JobType
|
|
nameWithType: JobType
|
|
fullName: TinyLife.Goals.JobType
|
|
- 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: 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.ChoicePromptInfo.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<ChoicePromptInfo>(ChoicePromptInfo)
|
|
nameWithType: Extensions.JsonCopy<ChoicePromptInfo>(ChoicePromptInfo)
|
|
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.ChoicePromptInfo>(TinyLife.Actions.ChoicePromptInfo)
|
|
nameWithType.vb: Extensions.JsonCopy(Of ChoicePromptInfo)(ChoicePromptInfo)
|
|
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.ChoicePromptInfo)(TinyLife.Actions.ChoicePromptInfo)
|
|
name.vb: JsonCopy(Of ChoicePromptInfo)(ChoicePromptInfo)
|
|
spec.csharp:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.ChoicePromptInfo)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: <
|
|
- uid: TinyLife.Actions.ChoicePromptInfo
|
|
name: ChoicePromptInfo
|
|
href: TinyLife.Actions.ChoicePromptInfo.html
|
|
- name: '>'
|
|
- name: (
|
|
- uid: TinyLife.Actions.ChoicePromptInfo
|
|
name: ChoicePromptInfo
|
|
href: TinyLife.Actions.ChoicePromptInfo.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.ChoicePromptInfo)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: TinyLife.Actions.ChoicePromptInfo
|
|
name: ChoicePromptInfo
|
|
href: TinyLife.Actions.ChoicePromptInfo.html
|
|
- name: )
|
|
- name: (
|
|
- uid: TinyLife.Actions.ChoicePromptInfo
|
|
name: ChoicePromptInfo
|
|
href: TinyLife.Actions.ChoicePromptInfo.html
|
|
- name: )
|
|
- 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.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: System
|
|
commentId: N:System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System
|
|
nameWithType: System
|
|
fullName: System
|
|
- 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>(T)
|
|
nameWithType: Extensions.JsonCopy<T>(T)
|
|
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
|
|
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
|
|
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
|
|
name.vb: JsonCopy(Of T)(T)
|
|
spec.csharp:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
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.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.ChoicePromptInfo.Option
|
|
commentId: T:TinyLife.Actions.ChoicePromptInfo.Option
|
|
href: TinyLife.Actions.ChoicePromptInfo.html
|
|
name: ChoicePromptInfo.Option
|
|
nameWithType: ChoicePromptInfo.Option
|
|
fullName: TinyLife.Actions.ChoicePromptInfo.Option
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.ChoicePromptInfo
|
|
name: ChoicePromptInfo
|
|
href: TinyLife.Actions.ChoicePromptInfo.html
|
|
- name: .
|
|
- uid: TinyLife.Actions.ChoicePromptInfo.Option
|
|
name: Option
|
|
href: TinyLife.Actions.ChoicePromptInfo.Option.html
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.ChoicePromptInfo
|
|
name: ChoicePromptInfo
|
|
href: TinyLife.Actions.ChoicePromptInfo.html
|
|
- name: .
|
|
- uid: TinyLife.Actions.ChoicePromptInfo.Option
|
|
name: Option
|
|
href: TinyLife.Actions.ChoicePromptInfo.Option.html
|
|
- uid: TinyLife.Actions.ChoicePromptInfo.Option[]
|
|
isExternal: true
|
|
href: TinyLife.Actions.ChoicePromptInfo.Option.html
|
|
name: Option[]
|
|
nameWithType: ChoicePromptInfo.Option[]
|
|
fullName: TinyLife.Actions.ChoicePromptInfo.Option[]
|
|
nameWithType.vb: ChoicePromptInfo.Option()
|
|
fullName.vb: TinyLife.Actions.ChoicePromptInfo.Option()
|
|
name.vb: Option()
|
|
spec.csharp:
|
|
- uid: TinyLife.Actions.ChoicePromptInfo.Option
|
|
name: Option
|
|
href: TinyLife.Actions.ChoicePromptInfo.Option.html
|
|
- name: '['
|
|
- name: ']'
|
|
spec.vb:
|
|
- uid: TinyLife.Actions.ChoicePromptInfo.Option
|
|
name: Option
|
|
href: TinyLife.Actions.ChoicePromptInfo.Option.html
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.Actions.ChoicePromptInfo.#ctor*
|
|
commentId: Overload:TinyLife.Actions.ChoicePromptInfo.#ctor
|
|
href: TinyLife.Actions.ChoicePromptInfo.html#TinyLife_Actions_ChoicePromptInfo__ctor_System_String_TinyLife_Actions_ChoicePromptInfo_Option___
|
|
name: ChoicePromptInfo
|
|
nameWithType: ChoicePromptInfo.ChoicePromptInfo
|
|
fullName: TinyLife.Actions.ChoicePromptInfo.ChoicePromptInfo
|
|
nameWithType.vb: ChoicePromptInfo.New
|
|
fullName.vb: TinyLife.Actions.ChoicePromptInfo.New
|
|
name.vb: New
|
|
- uid: TinyLife.Actions.ChoicePromptInfo.CreatePromptContent*
|
|
commentId: Overload:TinyLife.Actions.ChoicePromptInfo.CreatePromptContent
|
|
href: TinyLife.Actions.ChoicePromptInfo.html#TinyLife_Actions_ChoicePromptInfo_CreatePromptContent_TinyLife_Objects_Person_TinyLife_Uis_CoveringGroup_
|
|
name: CreatePromptContent
|
|
nameWithType: ChoicePromptInfo.CreatePromptContent
|
|
fullName: TinyLife.Actions.ChoicePromptInfo.CreatePromptContent
|
|
- uid: TinyLife.Objects.Person
|
|
commentId: T:TinyLife.Objects.Person
|
|
parent: TinyLife.Objects
|
|
href: TinyLife.Objects.Person.html
|
|
name: Person
|
|
nameWithType: Person
|
|
fullName: TinyLife.Objects.Person
|
|
- uid: TinyLife.Uis.CoveringGroup
|
|
commentId: T:TinyLife.Uis.CoveringGroup
|
|
parent: TinyLife.Uis
|
|
href: TinyLife.Uis.CoveringGroup.html
|
|
name: CoveringGroup
|
|
nameWithType: CoveringGroup
|
|
fullName: TinyLife.Uis.CoveringGroup
|
|
- uid: System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}
|
|
commentId: T:System.Collections.Generic.IEnumerable{MLEM.Ui.Elements.Element}
|
|
parent: System.Collections.Generic
|
|
definition: System.Collections.Generic.IEnumerable`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
|
name: IEnumerable<Element>
|
|
nameWithType: IEnumerable<Element>
|
|
fullName: System.Collections.Generic.IEnumerable<MLEM.Ui.Elements.Element>
|
|
nameWithType.vb: IEnumerable(Of Element)
|
|
fullName.vb: System.Collections.Generic.IEnumerable(Of MLEM.Ui.Elements.Element)
|
|
name.vb: IEnumerable(Of Element)
|
|
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: MLEM.Ui.Elements.Element
|
|
name: Element
|
|
isExternal: true
|
|
- 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: MLEM.Ui.Elements.Element
|
|
name: Element
|
|
isExternal: true
|
|
- name: )
|
|
- 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.Uis
|
|
commentId: N:TinyLife.Uis
|
|
href: TinyLife.html
|
|
name: TinyLife.Uis
|
|
nameWithType: TinyLife.Uis
|
|
fullName: TinyLife.Uis
|
|
spec.csharp:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Uis
|
|
name: Uis
|
|
href: TinyLife.Uis.html
|
|
spec.vb:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Uis
|
|
name: Uis
|
|
href: TinyLife.Uis.html
|
|
- 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<T>
|
|
nameWithType: IEnumerable<T>
|
|
fullName: System.Collections.Generic.IEnumerable<T>
|
|
nameWithType.vb: IEnumerable(Of T)
|
|
fullName.vb: System.Collections.Generic.IEnumerable(Of T)
|
|
name.vb: IEnumerable(Of T)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
isExternal: true
|
|
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
|