TinyLifeWeb/docs/api/TinyLife.Emotions.CombinedEmotionSource.yml

553 lines
19 KiB
YAML
Raw Permalink Normal View History

2022-06-09 20:12:10 +02:00
### YamlMime:ManagedReference
items:
- uid: TinyLife.Emotions.CombinedEmotionSource
commentId: T:TinyLife.Emotions.CombinedEmotionSource
id: CombinedEmotionSource
parent: TinyLife.Emotions
children:
- TinyLife.Emotions.CombinedEmotionSource.#ctor(TinyLife.Emotions.IEmotionSource[])
- TinyLife.Emotions.CombinedEmotionSource.SourceString
langs:
- csharp
- vb
name: CombinedEmotionSource
nameWithType: CombinedEmotionSource
fullName: TinyLife.Emotions.CombinedEmotionSource
type: Class
source:
remote:
path: TinyLife/Emotions/IEmotionSource.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-06-09 20:12:10 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CombinedEmotionSource
path: ../TinyLife/Emotions/IEmotionSource.cs
2022-12-20 13:25:03 +01:00
startLine: 24
2022-06-09 20:12:10 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Emotions
2024-01-07 16:53:47 +01:00
summary: >-
A combined emotion source is an <xref href="TinyLife.Emotions.IEmotionSource" data-throw-if-not-resolved="false"></xref> that combines multiple underlying emotion sources together.
A combined emotion source is displayed as multiple lines in the <xref href="TinyLife.Emotions.CombinedEmotionSource.SourceString" data-throw-if-not-resolved="false"></xref>.
2022-06-10 12:18:26 +02:00
example: []
2022-06-09 20:12:10 +02:00
syntax:
2022-12-20 13:25:03 +01:00
content: 'public class CombinedEmotionSource : IEmotionSource'
2023-03-30 18:07:55 +02:00
content.vb: Public Class CombinedEmotionSource Implements IEmotionSource
2022-06-09 20:12:10 +02:00
inheritance:
- System.Object
implements:
- TinyLife.Emotions.IEmotionSource
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.Emotions.CombinedEmotionSource.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.Emotions.CombinedEmotionSource.SourceString
commentId: P:TinyLife.Emotions.CombinedEmotionSource.SourceString
id: SourceString
parent: TinyLife.Emotions.CombinedEmotionSource
langs:
- csharp
- vb
name: SourceString
nameWithType: CombinedEmotionSource.SourceString
fullName: TinyLife.Emotions.CombinedEmotionSource.SourceString
type: Property
source:
remote:
path: TinyLife/Emotions/IEmotionSource.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-06-09 20:12:10 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SourceString
path: ../TinyLife/Emotions/IEmotionSource.cs
2022-12-20 13:25:03 +01:00
startLine: 27
2022-06-09 20:12:10 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Emotions
2024-01-07 16:53:47 +01:00
summary: A (localized) string that is displayed when hovering over an <xref href="TinyLife.Emotions.EmotionModifier" data-throw-if-not-resolved="false"></xref> that has this source
2022-06-09 20:12:10 +02:00
example: []
syntax:
content: public string SourceString { get; }
parameters: []
return:
type: System.String
content.vb: Public ReadOnly Property SourceString As String
overload: TinyLife.Emotions.CombinedEmotionSource.SourceString*
implements:
- TinyLife.Emotions.IEmotionSource.SourceString
- uid: TinyLife.Emotions.CombinedEmotionSource.#ctor(TinyLife.Emotions.IEmotionSource[])
commentId: M:TinyLife.Emotions.CombinedEmotionSource.#ctor(TinyLife.Emotions.IEmotionSource[])
id: '#ctor(TinyLife.Emotions.IEmotionSource[])'
parent: TinyLife.Emotions.CombinedEmotionSource
langs:
- csharp
- vb
2023-03-30 18:07:55 +02:00
name: CombinedEmotionSource(params IEmotionSource[])
nameWithType: CombinedEmotionSource.CombinedEmotionSource(params IEmotionSource[])
fullName: TinyLife.Emotions.CombinedEmotionSource.CombinedEmotionSource(params TinyLife.Emotions.IEmotionSource[])
2022-06-09 20:12:10 +02:00
type: Constructor
source:
remote:
path: TinyLife/Emotions/IEmotionSource.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-06-09 20:12:10 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/Emotions/IEmotionSource.cs
2022-12-20 13:25:03 +01:00
startLine: 35
2022-06-09 20:12:10 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Emotions
2024-01-07 16:53:47 +01:00
summary: Creates a new combined emotion source with the given underlying sources.
2022-06-10 12:18:26 +02:00
example: []
2022-06-09 20:12:10 +02:00
syntax:
content: public CombinedEmotionSource(params IEmotionSource[] sources)
parameters:
- id: sources
type: TinyLife.Emotions.IEmotionSource[]
2022-06-10 12:18:26 +02:00
description: The underlying sources to combine.
2022-06-09 20:12:10 +02:00
content.vb: Public Sub New(ParamArray sources As IEmotionSource())
overload: TinyLife.Emotions.CombinedEmotionSource.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb: CombinedEmotionSource.New(ParamArray IEmotionSource())
fullName.vb: TinyLife.Emotions.CombinedEmotionSource.New(ParamArray TinyLife.Emotions.IEmotionSource())
name.vb: New(ParamArray IEmotionSource())
2022-06-09 20:12:10 +02:00
references:
2022-06-10 12:18:26 +02:00
- uid: TinyLife.Emotions.IEmotionSource
commentId: T:TinyLife.Emotions.IEmotionSource
parent: TinyLife.Emotions
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.IEmotionSource.html
2022-06-10 12:18:26 +02:00
name: IEmotionSource
nameWithType: IEmotionSource
fullName: TinyLife.Emotions.IEmotionSource
- uid: TinyLife.Emotions.CombinedEmotionSource.SourceString
commentId: P:TinyLife.Emotions.CombinedEmotionSource.SourceString
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.CombinedEmotionSource.html#TinyLife_Emotions_CombinedEmotionSource_SourceString
2023-03-30 18:07:55 +02:00
name: SourceString
nameWithType: CombinedEmotionSource.SourceString
fullName: TinyLife.Emotions.CombinedEmotionSource.SourceString
2022-06-09 20:12:10 +02:00
- uid: TinyLife.Emotions
commentId: N:TinyLife.Emotions
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2022-06-09 20:12:10 +02:00
name: TinyLife.Emotions
nameWithType: TinyLife.Emotions
fullName: TinyLife.Emotions
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Emotions
name: Emotions
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.html
2023-03-30 18:07:55 +02:00
spec.vb:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Emotions
name: Emotions
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.html
2022-06-09 20:12:10 +02:00
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
2022-06-09 20:12:10 +02:00
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
2022-06-09 20:12:10 +02:00
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2022-06-09 20:12:10 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-06-09 20:12:10 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-06-09 20:12:10 +02:00
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2022-06-09 20:12:10 +02:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-06-09 20:12:10 +02:00
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
2022-06-09 20:12:10 +02:00
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2022-06-09 20:12:10 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-06-09 20:12:10 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2022-06-09 20:12:10 +02:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-06-09 20:12:10 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-06-09 20:12:10 +02:00
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2022-06-09 20:12:10 +02:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2022-06-09 20:12:10 +02:00
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-06-09 20:12:10 +02:00
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2022-06-09 20:12:10 +02:00
name: GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
2022-06-09 20:12:10 +02:00
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2022-06-09 20:12:10 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2022-06-09 20:12:10 +02:00
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2022-06-09 20:12:10 +02:00
name: GetType()
2023-03-30 18:07:55 +02:00
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
2022-06-09 20:12:10 +02:00
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2022-06-09 20:12:10 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2022-06-09 20:12:10 +02:00
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-06-09 20:12:10 +02:00
name: MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
2022-06-09 20:12:10 +02:00
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-06-09 20:12:10 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-06-09 20:12:10 +02:00
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
2022-06-09 20:12:10 +02:00
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2022-06-09 20:12:10 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-06-09 20:12:10 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2022-06-09 20:12:10 +02:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-06-09 20:12:10 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-06-09 20:12:10 +02:00
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2022-06-09 20:12:10 +02:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2022-06-09 20:12:10 +02:00
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-06-09 20:12:10 +02:00
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2022-06-09 20:12:10 +02:00
name: ToString()
2023-03-30 18:07:55 +02:00
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
2022-06-09 20:12:10 +02:00
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2022-06-09 20:12:10 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2022-06-09 20:12:10 +02:00
- name: (
- name: )
- uid: TinyLife.Emotions.CombinedEmotionSource.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
name: JsonCopy<CombinedEmotionSource>(CombinedEmotionSource)
nameWithType: Extensions.JsonCopy<CombinedEmotionSource>(CombinedEmotionSource)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Emotions.CombinedEmotionSource>(TinyLife.Emotions.CombinedEmotionSource)
nameWithType.vb: Extensions.JsonCopy(Of CombinedEmotionSource)(CombinedEmotionSource)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Emotions.CombinedEmotionSource)(TinyLife.Emotions.CombinedEmotionSource)
name.vb: JsonCopy(Of CombinedEmotionSource)(CombinedEmotionSource)
2022-06-09 20:12:10 +02:00
spec.csharp:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Emotions.CombinedEmotionSource)
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: <
- uid: TinyLife.Emotions.CombinedEmotionSource
name: CombinedEmotionSource
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.CombinedEmotionSource.html
2023-03-30 18:07:55 +02:00
- name: '>'
2022-06-09 20:12:10 +02:00
- name: (
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Emotions.CombinedEmotionSource
name: CombinedEmotionSource
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.CombinedEmotionSource.html
2022-06-09 20:12:10 +02:00
- name: )
spec.vb:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Emotions.CombinedEmotionSource)
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2022-06-09 20:12:10 +02:00
- name: (
2023-03-30 18:07:55 +02:00
- name: Of
- name: " "
- uid: TinyLife.Emotions.CombinedEmotionSource
name: CombinedEmotionSource
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.CombinedEmotionSource.html
2023-03-30 18:07:55 +02:00
- name: )
- name: (
- uid: TinyLife.Emotions.CombinedEmotionSource
name: CombinedEmotionSource
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.CombinedEmotionSource.html
2022-06-09 20:12:10 +02:00
- name: )
- uid: System
commentId: N:System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2022-06-09 20:12:10 +02:00
name: System
nameWithType: System
fullName: System
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2022-06-09 20:12:10 +02:00
name: JsonCopy<T>(T)
nameWithType: Extensions.JsonCopy<T>(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb: JsonCopy(Of T)(T)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: <
- name: T
- name: '>'
2022-06-09 20:12:10 +02:00
- name: (
- name: T
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: (
- name: Of
- name: " "
- name: T
- name: )
2022-06-09 20:12:10 +02:00
- name: (
- name: T
- name: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html
2022-06-09 20:12:10 +02:00
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2022-06-09 20:12:10 +02:00
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Utilities
name: Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Utilities
name: Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.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
2022-06-09 20:12:10 +02:00
- uid: TinyLife.Emotions.CombinedEmotionSource.SourceString*
commentId: Overload:TinyLife.Emotions.CombinedEmotionSource.SourceString
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.CombinedEmotionSource.html#TinyLife_Emotions_CombinedEmotionSource_SourceString
2022-06-09 20:12:10 +02:00
name: SourceString
nameWithType: CombinedEmotionSource.SourceString
fullName: TinyLife.Emotions.CombinedEmotionSource.SourceString
- uid: TinyLife.Emotions.IEmotionSource.SourceString
commentId: P:TinyLife.Emotions.IEmotionSource.SourceString
parent: TinyLife.Emotions.IEmotionSource
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.IEmotionSource.html#TinyLife_Emotions_IEmotionSource_SourceString
2022-06-09 20:12:10 +02:00
name: SourceString
nameWithType: IEmotionSource.SourceString
fullName: TinyLife.Emotions.IEmotionSource.SourceString
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
2022-06-09 20:12:10 +02:00
- uid: TinyLife.Emotions.CombinedEmotionSource.#ctor*
commentId: Overload:TinyLife.Emotions.CombinedEmotionSource.#ctor
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.CombinedEmotionSource.html#TinyLife_Emotions_CombinedEmotionSource__ctor_TinyLife_Emotions_IEmotionSource___
2022-06-09 20:12:10 +02:00
name: CombinedEmotionSource
nameWithType: CombinedEmotionSource.CombinedEmotionSource
fullName: TinyLife.Emotions.CombinedEmotionSource.CombinedEmotionSource
2023-03-30 18:07:55 +02:00
nameWithType.vb: CombinedEmotionSource.New
fullName.vb: TinyLife.Emotions.CombinedEmotionSource.New
name.vb: New
2022-06-09 20:12:10 +02:00
- uid: TinyLife.Emotions.IEmotionSource[]
isExternal: true
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.IEmotionSource.html
2022-06-09 20:12:10 +02:00
name: IEmotionSource[]
nameWithType: IEmotionSource[]
fullName: TinyLife.Emotions.IEmotionSource[]
nameWithType.vb: IEmotionSource()
fullName.vb: TinyLife.Emotions.IEmotionSource()
name.vb: IEmotionSource()
spec.csharp:
- uid: TinyLife.Emotions.IEmotionSource
name: IEmotionSource
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.IEmotionSource.html
2023-03-30 18:07:55 +02:00
- name: '['
- name: ']'
2022-06-09 20:12:10 +02:00
spec.vb:
- uid: TinyLife.Emotions.IEmotionSource
name: IEmotionSource
2024-01-07 16:53:47 +01:00
href: TinyLife.Emotions.IEmotionSource.html
2023-03-30 18:07:55 +02:00
- name: (
- name: )