Compare commits

..

No commits in common. "main" and "0.29.5" have entirely different histories.
main ... 0.29.5

589 changed files with 272840 additions and 411332 deletions

View file

@ -3,7 +3,7 @@
"isRoot": false,
"tools": {
"docfx": {
"version": "2.76.0",
"version": "2.61.0",
"commands": [
"docfx"
]

View file

@ -1,85 +0,0 @@
on:
pull_request:
types: [opened, synchronize, reopened, closed]
push:
jobs:
web:
runs-on: ubuntu-latest
permissions:
pull-requests: write # allow surge-preview to create/update PR comments
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/web/Gemfile
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true
- name: Build
run: cd web && bundle exec jekyll build
- name: Preview
if: github.event_name == 'pull_request'
uses: afc163/surge-preview@v1
with:
surge_token: ${{ secrets.SURGE_TOKEN }}
dist: web/_site
teardown: true
build: echo # see https://github.com/afc163/surge-preview/issues/231
# this is a beautiful way to deploy a website and i will not take any criticism
- name: Deploy
if: github.event_name == 'push' && github.ref_name == 'main'
run: |
curl -L --output cloudflared.deb https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb && sudo dpkg -i cloudflared.deb
mkdir ~/.ssh && echo "${{ secrets.ELLBOT_KEY }}" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa
rsync -rv --delete -e 'ssh -o "ProxyCommand cloudflared access ssh --hostname %h" -o "StrictHostKeyChecking=no"' web/_site/. ellbot@ssh.ellpeck.de:/var/www/tinylifegame
- name: Purge Cloudflare cache
uses: NathanVaughn/actions-cloudflare-purge@v3.1.0
with:
cf_zone: ${{ secrets.CLOUDFLARE_ZONE }}
cf_auth: ${{ secrets.CLOUDFLARE_TOKEN }}
docs:
runs-on: ubuntu-latest
permissions:
pull-requests: write # allow surge-preview to create/update PR comments
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.305
- name: Build
run: cd docs && dotnet tool restore && dotnet docfx
- name: Preview
if: github.event_name == 'pull_request'
uses: afc163/surge-preview@v1
with:
surge_token: ${{ secrets.SURGE_TOKEN }}
dist: docs/_site
teardown: true
build: echo # see https://github.com/afc163/surge-preview/issues/231
# this is a beautiful way to deploy a website and i will not take any criticism
- name: Deploy
if: github.event_name == 'push' && github.ref_name == 'main'
run: |
curl -L --output cloudflared.deb https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb && sudo dpkg -i cloudflared.deb
mkdir ~/.ssh && echo "${{ secrets.ELLBOT_KEY }}" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa
rsync -rv --delete -e 'ssh -o "ProxyCommand cloudflared access ssh --hostname %h" -o "StrictHostKeyChecking=no"' docs/_site/. ellbot@ssh.ellpeck.de:/var/www/tinylifedocs
- name: Purge Cloudflare cache
uses: NathanVaughn/actions-cloudflare-purge@v3.1.0
with:
cf_zone: ${{ secrets.CLOUDFLARE_ZONE }}
cf_auth: ${{ secrets.CLOUDFLARE_TOKEN }}

4
.gitignore vendored
View file

@ -1,5 +1,3 @@
_site
.jekyll-cache
obj
.idea
__*
obj

File diff suppressed because it is too large Load diff

View file

@ -1,5 +0,0 @@
![](media/news/outright.png)
For Pride Month, we're partnering with Outright for their [Family Pride](https://outrightinternational.org/familypride) event. By donating to our campaign, you support LGBTQIA+ people all around the world, and you help more fun queer content make its way into the game!
**[See Rewards and Donate](https://outrightinternational.donorsupport.co/page/TinyLifeOutrightPride2024)** ←

29
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,29 @@
pipeline {
agent any
stages {
stage('Site') {
when {
branch 'main'
}
steps {
sh '''cd web
bundle
bundle exec jekyll build'''
sh 'rm -rf /var/www/tinylifegame/*'
sh 'cp -r web/_site/. /var/www/tinylifegame/'
}
}
stage('Docs') {
when {
branch 'main'
}
steps {
sh '''cd docs
dotnet tool restore
dotnet docfx'''
sh 'rm -rf /var/www/tinylifedocs/*'
sh 'cp -r docs/_site/. /var/www/tinylifedocs/'
}
}
}
}

View file

@ -1,5 +1,13 @@
![The Tiny Life banner](https://raw.githubusercontent.com/Ellpeck/TinyLifeWeb/main/docs/media/banner.png)
This is the repository for the [Tiny Life website](https://tinylifegame.com), which you can find in the `web` directory, as well as the [Tiny Life Developer Docs](https://docs.tinylifegame.com), which you can find in the `docs` directory.
Welcome to the Tiny Life Modding API! On [the site](https://docs.tinylifegame.com), you can find the full modding API documentation, a bunch of modding tutorials, as well as an online version of the game's changelog.
Additional documentation for various parts of the game and its development can be found on [the wiki](https://wiki.tinylifegame.com), as well.
# What next?
- To install a mod, custom lot or custom household, check out the [custom content installation](https://docs.tinylifegame.com/articles/getting.html) tutorial.
- To create your first mod, check out the [modding basics](https://docs.tinylifegame.com/articles/mod_basics.html) tutorial or the [example mod](https://github.com/Ellpeck/TinyLifeExampleMod).
- This site features a web version of the modding API's [documentation](https://docs.tinylifegame.com/api/TinyLife.html) as well, which is a verbatim copy of the XML documentation that you can find in the API's source.
# Contributing
If you've made a mod for Tiny Life before, and you think you know what you're doing, you can help others by contributing your own tutorial articles or improving existing ones. You can get started doing so by [submitting a pull request](https://github.com/Ellpeck/TinyLifeWeb/pulls). If you found an error in the game's API documentation, you can also [submit an issue](https://github.com/Ellpeck/TinyLifeWeb/issues).
Thank you for supporting Tiny Life's custom content community!

View file

@ -1,15 +0,0 @@
ExpiresActive On
ExpiresDefault A31536000
ExpiresByType text/html A600
ExpiresByType text/javascript A2592000
ExpiresByType application/javascript A2592000
RewriteEngine On
RewriteBase /
# legacy redirects
RewriteRule ^Changelog(.html)?$ "https://tinylifegame.com/changelog" [R=301,L]
RewriteRule ^InGameNews(.html)?$ "https://tinylifegame.com/ingamenews" [R=301,L]
RewriteRule ^articles/content_policy(.html)?$ "https://tinylifegame.com/content_policy" [R=301,L]
RewriteRule ^articles/common_issues(.html)?$ "https://tinylifegame.com/common_issues" [R=301,L]
RewriteRule ^articles/preview(.html)?$ "https://tinylifegame.com/preview" [R=301,L]

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,531 @@
### YamlMime:ManagedReference
items:
- uid: TinyLife.Actions.
commentId: T:TinyLife.Actions.
id: ''
parent: TinyLife.Actions
children: []
langs:
- csharp
- vb
name: ''
nameWithType: ''
fullName: TinyLife.Actions.
type: Class
source:
remote:
path: TinyLife/Actions/CanExecuteResult.cs
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ''
path: ../TinyLife/Actions/CanExecuteResult.cs
startLine: 13
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: "\nA utility structure used by <xref href=\"TinyLife.Actions.ActionType.CanExecuteDelegate\" data-throw-if-not-resolved=\"false\"></xref> and other situations where an action can fail, or fail to start, due to a specific circumstance.\nThe <see cref=\"!:Name\"></see> of the <xref href=\"TinyLife.Actions.CanExecuteResult\" data-throw-if-not-resolved=\"false\"></xref> will be localized and displayed to the player if the <xref href=\"TinyLife.Actions.ResultType\" data-throw-if-not-resolved=\"false\"></xref> is not <see cref=\"!:Hidden\"></see> or <see cref=\"!:Valid\"></see>.\n"
example: []
syntax:
content: 'public class : IEquatable<>'
content.vb: >-
Public Class
Implements IEquatable(Of )
inheritance:
- System.Object
implements:
- System.IEquatable{TinyLife.Actions.}
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..TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- class
modifiers.vb:
- Public
- Class
references:
- uid: TinyLife.Actions.ActionType.CanExecuteDelegate
commentId: T:TinyLife.Actions.ActionType.CanExecuteDelegate
parent: TinyLife.Actions
name: ActionType.CanExecuteDelegate
nameWithType: ActionType.CanExecuteDelegate
fullName: TinyLife.Actions.ActionType.CanExecuteDelegate
- uid: TinyLife.Actions.CanExecuteResult
commentId: T:TinyLife.Actions.CanExecuteResult
parent: TinyLife.Actions
name: CanExecuteResult
nameWithType: CanExecuteResult
fullName: TinyLife.Actions.CanExecuteResult
- uid: TinyLife.Actions.ResultType
commentId: T:TinyLife.Actions.ResultType
parent: TinyLife.Actions
name: ResultType
nameWithType: ResultType
fullName: TinyLife.Actions.ResultType
- uid: TinyLife.Actions.ResultType.Invalid
commentId: F:TinyLife.Actions.ResultType.Invalid
isExternal: true
- uid: TinyLife.Actions
commentId: N:TinyLife.Actions
name: TinyLife.Actions
nameWithType: TinyLife.Actions
fullName: TinyLife.Actions
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
name: Object
nameWithType: Object
fullName: System.Object
- uid: System.IEquatable{TinyLife.Actions.}
commentId: T:System.IEquatable{TinyLife.Actions.}
parent: System
definition: System.IEquatable`1
name: IEquatable<>
nameWithType: IEquatable<>
fullName: System.IEquatable<TinyLife.Actions.>
nameWithType.vb: IEquatable(Of )
fullName.vb: System.IEquatable(Of TinyLife.Actions.)
name.vb: IEquatable(Of )
spec.csharp:
- uid: System.IEquatable`1
name: IEquatable
nameWithType: IEquatable
fullName: System.IEquatable
isExternal: true
- name: <
nameWithType: <
fullName: <
- uid: TinyLife.Actions.
name: ''
nameWithType: ''
fullName: TinyLife.Actions.
- name: '>'
nameWithType: '>'
fullName: '>'
spec.vb:
- uid: System.IEquatable`1
name: IEquatable
nameWithType: IEquatable
fullName: System.IEquatable
isExternal: true
- name: '(Of '
nameWithType: '(Of '
fullName: '(Of '
- uid: TinyLife.Actions.
name: ''
nameWithType: ''
fullName: TinyLife.Actions.
- name: )
nameWithType: )
fullName: )
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
name: Equals(Object)
nameWithType: Object.Equals(Object)
fullName: System.Object.Equals(System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
name: Equals(Object, Object)
nameWithType: Object.Equals(Object, Object)
fullName: System.Object.Equals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
name: GetHashCode()
nameWithType: Object.GetHashCode()
fullName: System.Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
name: GetType()
nameWithType: Object.GetType()
fullName: System.Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
name: MemberwiseClone()
nameWithType: Object.MemberwiseClone()
fullName: System.Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
name: ReferenceEquals(Object, Object)
nameWithType: Object.ReferenceEquals(Object, Object)
fullName: System.Object.ReferenceEquals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
name: ToString()
nameWithType: Object.ToString()
fullName: System.Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Actions..TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy<>()
nameWithType: Extensions.JsonCopy<>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.>()
nameWithType.vb: Extensions.JsonCopy(Of )()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.)()
name.vb: JsonCopy(Of )()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<>
nameWithType: Extensions.JsonCopy<>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.>
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of )
nameWithType: Extensions.JsonCopy(Of )
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.)
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System
commentId: N:System
isExternal: true
name: System
nameWithType: System
fullName: System
- uid: System.IEquatable`1
commentId: T:System.IEquatable`1
isExternal: true
name: IEquatable<T>
nameWithType: IEquatable<T>
fullName: System.IEquatable<T>
nameWithType.vb: IEquatable(Of T)
fullName.vb: System.IEquatable(Of T)
name.vb: IEquatable(Of T)
spec.csharp:
- uid: System.IEquatable`1
name: IEquatable
nameWithType: IEquatable
fullName: System.IEquatable
isExternal: true
- name: <
nameWithType: <
fullName: <
- name: T
nameWithType: T
fullName: T
- name: '>'
nameWithType: '>'
fullName: '>'
spec.vb:
- uid: System.IEquatable`1
name: IEquatable
nameWithType: IEquatable
fullName: System.IEquatable
isExternal: true
- name: '(Of '
nameWithType: '(Of '
fullName: '(Of '
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy<T>(T)
nameWithType: Extensions.JsonCopy<T>(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb: JsonCopy(Of T)(T)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities

View file

@ -1,205 +0,0 @@
### YamlMime:ManagedReference
items:
- uid: TinyLife.Actions.Action.ActionTypeConstructedDelegate
commentId: T:TinyLife.Actions.Action.ActionTypeConstructedDelegate
id: Action.ActionTypeConstructedDelegate
parent: TinyLife.Actions
children: []
langs:
- csharp
- vb
name: Action.ActionTypeConstructedDelegate
nameWithType: Action.ActionTypeConstructedDelegate
fullName: TinyLife.Actions.Action.ActionTypeConstructedDelegate
type: Delegate
source:
remote:
path: TinyLife/Actions/Action.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ActionTypeConstructedDelegate
path: ../TinyLife/Actions/Action.cs
startLine: 1031
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A delegate method used by <xref href="TinyLife.Actions.Action.OnActionTypeConstructed" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public delegate void Action.ActionTypeConstructedDelegate(ActionType type, ref ActionType.TypeSettings settings)
parameters:
- id: type
type: TinyLife.Actions.ActionType
- id: settings
type: TinyLife.Actions.ActionType.TypeSettings
content.vb: Public Delegate Sub Action.ActionTypeConstructedDelegate(type As ActionType, settings As ActionType.TypeSettings)
extensionMethods:
- TinyLife.Actions.Action.ActionTypeConstructedDelegate.TinyLife.Utilities.Extensions.JsonCopy``1
references:
- uid: TinyLife.Actions.Action.OnActionTypeConstructed
commentId: E:TinyLife.Actions.Action.OnActionTypeConstructed
parent: TinyLife.Actions.Action
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_OnActionTypeConstructed
name: OnActionTypeConstructed
nameWithType: Action.OnActionTypeConstructed
fullName: TinyLife.Actions.Action.OnActionTypeConstructed
- 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: TinyLife.Actions.Action.ActionTypeConstructedDelegate.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<ActionTypeConstructedDelegate>(ActionTypeConstructedDelegate)
nameWithType: Extensions.JsonCopy<Action.ActionTypeConstructedDelegate>(Action.ActionTypeConstructedDelegate)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.Action.ActionTypeConstructedDelegate>(TinyLife.Actions.Action.ActionTypeConstructedDelegate)
nameWithType.vb: Extensions.JsonCopy(Of Action.ActionTypeConstructedDelegate)(Action.ActionTypeConstructedDelegate)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.Action.ActionTypeConstructedDelegate)(TinyLife.Actions.Action.ActionTypeConstructedDelegate)
name.vb: JsonCopy(Of ActionTypeConstructedDelegate)(ActionTypeConstructedDelegate)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Action.ActionTypeConstructedDelegate)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Actions.Action.ActionTypeConstructedDelegate
name: ActionTypeConstructedDelegate
href: TinyLife.Actions.Action.ActionTypeConstructedDelegate.html
- name: '>'
- name: (
- uid: TinyLife.Actions.Action.ActionTypeConstructedDelegate
name: ActionTypeConstructedDelegate
href: TinyLife.Actions.Action.ActionTypeConstructedDelegate.html
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Action.ActionTypeConstructedDelegate)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.Action.ActionTypeConstructedDelegate
name: ActionTypeConstructedDelegate
href: TinyLife.Actions.Action.ActionTypeConstructedDelegate.html
- name: )
- name: (
- uid: TinyLife.Actions.Action.ActionTypeConstructedDelegate
name: ActionTypeConstructedDelegate
href: TinyLife.Actions.Action.ActionTypeConstructedDelegate.html
- name: )
- 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.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.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.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

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -15,18 +15,18 @@ items:
source:
remote:
path: TinyLife/Actions/ActionType.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanExecuteDelegate
path: ../TinyLife/Actions/ActionType.cs
startLine: 182
startLine: 203
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A delegate method used for <xref href="TinyLife.Actions.ActionType.TypeSettings.CanExecute" data-throw-if-not-resolved="false"></xref>
summary: "\nA delegate method used for <xref href=\"TinyLife.Actions.ActionType.TypeSettings.CanExecute\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
syntax:
content: public delegate CanExecuteResult ActionType.CanExecuteDelegate(ActionInfo info, bool automatic)
content: public delegate CanExecuteResult CanExecuteDelegate(ActionInfo info, bool automatic);
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
@ -36,89 +36,64 @@ items:
description: Whether or not the action was started by a <xref href="TinyLife.Objects.PersonAi" data-throw-if-not-resolved="false"></xref> rather than manually
return:
type: TinyLife.Actions.CanExecuteResult
content.vb: Public Delegate Function ActionType.CanExecuteDelegate(info As ActionInfo, automatic As Boolean) As CanExecuteResult
content.vb: Public Delegate Function CanExecuteDelegate(info As ActionInfo, automatic As Boolean) As CanExecuteResult
extensionMethods:
- TinyLife.Actions.ActionType.CanExecuteDelegate.TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- delegate
modifiers.vb:
- Public
- Delegate
references:
- 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
isExternal: true
- uid: TinyLife.Objects.PersonAi
commentId: T:TinyLife.Objects.PersonAi
href: TinyLife.Objects.PersonAi.html
name: PersonAi
nameWithType: PersonAi
fullName: TinyLife.Objects.PersonAi
- 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: TinyLife.Actions.ActionType.CanExecuteDelegate.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<CanExecuteDelegate>(CanExecuteDelegate)
nameWithType: Extensions.JsonCopy<ActionType.CanExecuteDelegate>(ActionType.CanExecuteDelegate)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.ActionType.CanExecuteDelegate>(TinyLife.Actions.ActionType.CanExecuteDelegate)
nameWithType.vb: Extensions.JsonCopy(Of ActionType.CanExecuteDelegate)(ActionType.CanExecuteDelegate)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.ActionType.CanExecuteDelegate)(TinyLife.Actions.ActionType.CanExecuteDelegate)
name.vb: JsonCopy(Of CanExecuteDelegate)(CanExecuteDelegate)
name: JsonCopy<ActionType.CanExecuteDelegate>()
nameWithType: Extensions.JsonCopy<ActionType.CanExecuteDelegate>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.ActionType.CanExecuteDelegate>()
nameWithType.vb: Extensions.JsonCopy(Of ActionType.CanExecuteDelegate)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.ActionType.CanExecuteDelegate)()
name.vb: JsonCopy(Of ActionType.CanExecuteDelegate)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.ActionType.CanExecuteDelegate)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Actions.ActionType.CanExecuteDelegate
name: CanExecuteDelegate
href: TinyLife.Actions.ActionType.CanExecuteDelegate.html
- name: '>'
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<ActionType.CanExecuteDelegate>
nameWithType: Extensions.JsonCopy<ActionType.CanExecuteDelegate>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.ActionType.CanExecuteDelegate>
- name: (
- uid: TinyLife.Actions.ActionType.CanExecuteDelegate
name: CanExecuteDelegate
href: TinyLife.Actions.ActionType.CanExecuteDelegate.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.ActionType.CanExecuteDelegate)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of ActionType.CanExecuteDelegate)
nameWithType: Extensions.JsonCopy(Of ActionType.CanExecuteDelegate)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.ActionType.CanExecuteDelegate)
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.ActionType.CanExecuteDelegate
name: CanExecuteDelegate
href: TinyLife.Actions.ActionType.CanExecuteDelegate.html
- name: )
- name: (
- uid: TinyLife.Actions.ActionType.CanExecuteDelegate
name: CanExecuteDelegate
href: TinyLife.Actions.ActionType.CanExecuteDelegate.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- 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
@ -126,23 +101,17 @@ references:
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
name: Boolean
nameWithType: Boolean
fullName: System.Boolean
- 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.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)
@ -151,59 +120,46 @@ references:
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: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
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: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- 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: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- 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

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -7,7 +7,6 @@ items:
- TinyLife.Actions.Behaviors.ActionBehavior
- TinyLife.Actions.Behaviors.ComputerBehavior
- TinyLife.Actions.Behaviors.GetAndSitDownBehavior
- TinyLife.Actions.Behaviors.PhoneBehavior
- TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior
- TinyLife.Actions.Behaviors.ReadBehavior
- TinyLife.Actions.Behaviors.SinkBehavior
@ -25,81 +24,43 @@ references:
- uid: TinyLife.Actions.Behaviors.ActionBehavior
commentId: T:TinyLife.Actions.Behaviors.ActionBehavior
parent: TinyLife.Actions.Behaviors
href: TinyLife.Actions.Behaviors.ActionBehavior.html
name: ActionBehavior
nameWithType: ActionBehavior
fullName: TinyLife.Actions.Behaviors.ActionBehavior
- uid: TinyLife.Actions.Behaviors.ComputerBehavior
commentId: T:TinyLife.Actions.Behaviors.ComputerBehavior
href: TinyLife.Actions.Behaviors.ComputerBehavior.html
name: ComputerBehavior
nameWithType: ComputerBehavior
fullName: TinyLife.Actions.Behaviors.ComputerBehavior
- uid: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
commentId: T:TinyLife.Actions.Behaviors.GetAndSitDownBehavior
href: TinyLife.Actions.Behaviors.GetAndSitDownBehavior.html
name: GetAndSitDownBehavior
nameWithType: GetAndSitDownBehavior
fullName: TinyLife.Actions.Behaviors.GetAndSitDownBehavior
- uid: TinyLife.Actions.Behaviors.PhoneBehavior
commentId: T:TinyLife.Actions.Behaviors.PhoneBehavior
href: TinyLife.Actions.Behaviors.PhoneBehavior.html
name: PhoneBehavior
nameWithType: PhoneBehavior
fullName: TinyLife.Actions.Behaviors.PhoneBehavior
- uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior
commentId: T:TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior
parent: TinyLife.Actions.Behaviors
href: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.html
name: PickUpOrSpawnBehavior
nameWithType: PickUpOrSpawnBehavior
fullName: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior
- uid: TinyLife.Actions.Behaviors.ReadBehavior
commentId: T:TinyLife.Actions.Behaviors.ReadBehavior
href: TinyLife.Actions.Behaviors.ReadBehavior.html
name: ReadBehavior
nameWithType: ReadBehavior
fullName: TinyLife.Actions.Behaviors.ReadBehavior
- uid: TinyLife.Actions.Behaviors.SinkBehavior
commentId: T:TinyLife.Actions.Behaviors.SinkBehavior
href: TinyLife.Actions.Behaviors.SinkBehavior.html
name: SinkBehavior
nameWithType: SinkBehavior
fullName: TinyLife.Actions.Behaviors.SinkBehavior
- uid: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior
commentId: T:TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior
parent: TinyLife.Actions.Behaviors
href: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.html
name: WorkAtDeskObjectBehavior
nameWithType: WorkAtDeskObjectBehavior
fullName: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior
- uid: TinyLife.Actions.Behaviors
commentId: N:TinyLife.Actions.Behaviors
href: TinyLife.html
name: TinyLife.Actions.Behaviors
nameWithType: TinyLife.Actions.Behaviors
fullName: TinyLife.Actions.Behaviors
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Actions
name: Actions
href: TinyLife.Actions.html
- name: .
- uid: TinyLife.Actions.Behaviors
name: Behaviors
href: TinyLife.Actions.Behaviors.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Actions
name: Actions
href: TinyLife.Actions.html
- name: .
- uid: TinyLife.Actions.Behaviors
name: Behaviors
href: TinyLife.Actions.Behaviors.html

View file

@ -1,300 +0,0 @@
### YamlMime:ManagedReference
items:
- uid: TinyLife.Actions.CanExecuteResult.ResultType
commentId: T:TinyLife.Actions.CanExecuteResult.ResultType
id: CanExecuteResult.ResultType
parent: TinyLife.Actions
children:
- TinyLife.Actions.CanExecuteResult.ResultType.Hidden
- TinyLife.Actions.CanExecuteResult.ResultType.Invalid
- TinyLife.Actions.CanExecuteResult.ResultType.Valid
langs:
- csharp
- vb
name: CanExecuteResult.ResultType
nameWithType: CanExecuteResult.ResultType
fullName: TinyLife.Actions.CanExecuteResult.ResultType
type: Enum
source:
remote:
path: TinyLife/Actions/CanExecuteResult.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ResultType
path: ../TinyLife/Actions/CanExecuteResult.cs
startLine: 30
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: >-
A type of result that a <xref href="TinyLife.Actions.CanExecuteResult" data-throw-if-not-resolved="false"></xref> can have.
In general, custom <xref href="TinyLife.Actions.CanExecuteResult" data-throw-if-not-resolved="false"></xref> instances will have the <xref href="TinyLife.Actions.CanExecuteResult.ResultType.Invalid" data-throw-if-not-resolved="false"></xref> result type, as <xref href="TinyLife.Actions.CanExecuteResult.ResultType.Valid" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.Actions.CanExecuteResult.ResultType.Hidden" data-throw-if-not-resolved="false"></xref> are already covered by their respective <xref href="TinyLife.Actions.CanExecuteResult" data-throw-if-not-resolved="false"></xref> counterparts.
example: []
syntax:
content: public enum CanExecuteResult.ResultType
content.vb: Public Enum CanExecuteResult.ResultType
extensionMethods:
- TinyLife.Actions.CanExecuteResult.ResultType.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.Actions.CanExecuteResult.ResultType.Valid
commentId: F:TinyLife.Actions.CanExecuteResult.ResultType.Valid
id: Valid
parent: TinyLife.Actions.CanExecuteResult.ResultType
langs:
- csharp
- vb
name: Valid
nameWithType: CanExecuteResult.ResultType.Valid
fullName: TinyLife.Actions.CanExecuteResult.ResultType.Valid
type: Field
source:
remote:
path: TinyLife/Actions/CanExecuteResult.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Valid
path: ../TinyLife/Actions/CanExecuteResult.cs
startLine: 36
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: >-
A valid <xref href="TinyLife.Actions.CanExecuteResult.ResultType" data-throw-if-not-resolved="false"></xref> indicates that the action can be executed.
<xref href="TinyLife.Actions.CanExecuteResult" data-throw-if-not-resolved="false"></xref> instances with this type usually don't display their name to the player.
example: []
syntax:
content: Valid = 0
return:
type: TinyLife.Actions.CanExecuteResult.ResultType
- uid: TinyLife.Actions.CanExecuteResult.ResultType.Invalid
commentId: F:TinyLife.Actions.CanExecuteResult.ResultType.Invalid
id: Invalid
parent: TinyLife.Actions.CanExecuteResult.ResultType
langs:
- csharp
- vb
name: Invalid
nameWithType: CanExecuteResult.ResultType.Invalid
fullName: TinyLife.Actions.CanExecuteResult.ResultType.Invalid
type: Field
source:
remote:
path: TinyLife/Actions/CanExecuteResult.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Invalid
path: ../TinyLife/Actions/CanExecuteResult.cs
startLine: 40
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: An invalid <xref href="TinyLife.Actions.CanExecuteResult.ResultType" data-throw-if-not-resolved="false"></xref> signifies that the action cannot be executed for some reason.
example: []
syntax:
content: Invalid = 1
return:
type: TinyLife.Actions.CanExecuteResult.ResultType
- uid: TinyLife.Actions.CanExecuteResult.ResultType.Hidden
commentId: F:TinyLife.Actions.CanExecuteResult.ResultType.Hidden
id: Hidden
parent: TinyLife.Actions.CanExecuteResult.ResultType
langs:
- csharp
- vb
name: Hidden
nameWithType: CanExecuteResult.ResultType.Hidden
fullName: TinyLife.Actions.CanExecuteResult.ResultType.Hidden
type: Field
source:
remote:
path: TinyLife/Actions/CanExecuteResult.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Hidden
path: ../TinyLife/Actions/CanExecuteResult.cs
startLine: 45
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: >-
A hidden <xref href="TinyLife.Actions.CanExecuteResult.ResultType" data-throw-if-not-resolved="false"></xref> indicates that the action cannot be executed, and shouldn't be displayed as a disallowed option to the player.
<xref href="TinyLife.Actions.CanExecuteResult" data-throw-if-not-resolved="false"></xref> instances with this type usually don't display their name to the player.
example: []
syntax:
content: Hidden = 2
return:
type: TinyLife.Actions.CanExecuteResult.ResultType
references:
- 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.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.CanExecuteResult.ResultType.Valid
commentId: F:TinyLife.Actions.CanExecuteResult.ResultType.Valid
href: TinyLife.Actions.CanExecuteResult.ResultType.html#TinyLife_Actions_CanExecuteResult_ResultType_Valid
name: Valid
nameWithType: CanExecuteResult.ResultType.Valid
fullName: TinyLife.Actions.CanExecuteResult.ResultType.Valid
- uid: TinyLife.Actions.CanExecuteResult.ResultType.Hidden
commentId: F:TinyLife.Actions.CanExecuteResult.ResultType.Hidden
href: TinyLife.Actions.CanExecuteResult.ResultType.html#TinyLife_Actions_CanExecuteResult_ResultType_Hidden
name: Hidden
nameWithType: CanExecuteResult.ResultType.Hidden
fullName: TinyLife.Actions.CanExecuteResult.ResultType.Hidden
- 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: TinyLife.Actions.CanExecuteResult.ResultType.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<ResultType>(ResultType)
nameWithType: Extensions.JsonCopy<CanExecuteResult.ResultType>(CanExecuteResult.ResultType)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.CanExecuteResult.ResultType>(TinyLife.Actions.CanExecuteResult.ResultType)
nameWithType.vb: Extensions.JsonCopy(Of CanExecuteResult.ResultType)(CanExecuteResult.ResultType)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.CanExecuteResult.ResultType)(TinyLife.Actions.CanExecuteResult.ResultType)
name.vb: JsonCopy(Of ResultType)(ResultType)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.CanExecuteResult.ResultType)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Actions.CanExecuteResult.ResultType
name: ResultType
href: TinyLife.Actions.CanExecuteResult.ResultType.html
- name: '>'
- name: (
- uid: TinyLife.Actions.CanExecuteResult.ResultType
name: ResultType
href: TinyLife.Actions.CanExecuteResult.ResultType.html
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.CanExecuteResult.ResultType)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.CanExecuteResult.ResultType
name: ResultType
href: TinyLife.Actions.CanExecuteResult.ResultType.html
- name: )
- name: (
- uid: TinyLife.Actions.CanExecuteResult.ResultType
name: ResultType
href: TinyLife.Actions.CanExecuteResult.ResultType.html
- name: )
- 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: TinyLife.Actions.CanExecuteResult.ResultType
commentId: T:TinyLife.Actions.CanExecuteResult.ResultType
parent: TinyLife.Actions
href: TinyLife.Actions.CanExecuteResult.html
name: CanExecuteResult.ResultType
nameWithType: CanExecuteResult.ResultType
fullName: TinyLife.Actions.CanExecuteResult.ResultType
spec.csharp:
- uid: TinyLife.Actions.CanExecuteResult
name: CanExecuteResult
href: TinyLife.Actions.CanExecuteResult.html
- name: .
- uid: TinyLife.Actions.CanExecuteResult.ResultType
name: ResultType
href: TinyLife.Actions.CanExecuteResult.ResultType.html
spec.vb:
- uid: TinyLife.Actions.CanExecuteResult
name: CanExecuteResult
href: TinyLife.Actions.CanExecuteResult.html
- name: .
- uid: TinyLife.Actions.CanExecuteResult.ResultType
name: ResultType
href: TinyLife.Actions.CanExecuteResult.ResultType.html

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,827 +0,0 @@
### 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
source:
remote:
path: TinyLife/Actions/ChoicePromptInfo.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ChoicePromptInfo
path: ../TinyLife/Actions/ChoicePromptInfo.cs
startLine: 17
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
source:
remote:
path: TinyLife/Actions/ChoicePromptInfo.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Name
path: ../TinyLife/Actions/ChoicePromptInfo.cs
startLine: 24
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
source:
remote:
path: TinyLife/Actions/ChoicePromptInfo.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Options
path: ../TinyLife/Actions/ChoicePromptInfo.cs
startLine: 28
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
source:
remote:
path: TinyLife/Actions/ChoicePromptInfo.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/Actions/ChoicePromptInfo.cs
startLine: 35
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
source:
remote:
path: TinyLife/Actions/ChoicePromptInfo.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CreatePromptContent
path: ../TinyLife/Actions/ChoicePromptInfo.cs
startLine: 46
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

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -5,12 +5,9 @@ items:
id: EmoteCategory
parent: TinyLife.Actions
children:
- TinyLife.Actions.EmoteCategory.Emotion
- TinyLife.Actions.EmoteCategory.Flirty
- TinyLife.Actions.EmoteCategory.Food
- TinyLife.Actions.EmoteCategory.General
- TinyLife.Actions.EmoteCategory.Negative
- TinyLife.Actions.EmoteCategory.Object
- TinyLife.Actions.EmoteCategory.Travel
- TinyLife.Actions.EmoteCategory.Unable
langs:
@ -23,15 +20,15 @@ items:
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EmoteCategory
path: ../TinyLife/Actions/Emote.cs
startLine: 175
startLine: 135
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A flag enumeration that represents the types of <xref href="TinyLife.Actions.Emote" data-throw-if-not-resolved="false"></xref> that are available
summary: "\nA flag enumeration that represents the types of <xref href=\"TinyLife.Actions.Emote\" data-throw-if-not-resolved=\"false\"></xref> that are available\n"
example: []
syntax:
content: >-
@ -48,6 +45,12 @@ items:
- type: System.FlagsAttribute
ctor: System.FlagsAttribute.#ctor
arguments: []
modifiers.csharp:
- public
- enum
modifiers.vb:
- Public
- Enum
- uid: TinyLife.Actions.EmoteCategory.General
commentId: F:TinyLife.Actions.EmoteCategory.General
id: General
@ -62,18 +65,26 @@ items:
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: General
path: ../TinyLife/Actions/Emote.cs
startLine: 179
startLine: 141
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: "\nAn emote category that represents emotes for general conversations\n"
example: []
syntax:
content: General = 1
return:
type: TinyLife.Actions.EmoteCategory
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Actions.EmoteCategory.Travel
commentId: F:TinyLife.Actions.EmoteCategory.Travel
id: Travel
@ -88,18 +99,26 @@ items:
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Travel
path: ../TinyLife/Actions/Emote.cs
startLine: 180
startLine: 145
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: "\nAn emote category that represents travel-related emotes\n"
example: []
syntax:
content: Travel = 2
return:
type: TinyLife.Actions.EmoteCategory
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Actions.EmoteCategory.Negative
commentId: F:TinyLife.Actions.EmoteCategory.Negative
id: Negative
@ -114,18 +133,26 @@ items:
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Negative
path: ../TinyLife/Actions/Emote.cs
startLine: 181
startLine: 149
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: "\nAn emote category that represents negative emotes\n"
example: []
syntax:
content: Negative = 4
return:
type: TinyLife.Actions.EmoteCategory
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Actions.EmoteCategory.Flirty
commentId: F:TinyLife.Actions.EmoteCategory.Flirty
id: Flirty
@ -140,18 +167,26 @@ items:
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Flirty
path: ../TinyLife/Actions/Emote.cs
startLine: 182
startLine: 153
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: "\nAn emote category that represents sex related or suggestive emotes\n"
example: []
syntax:
content: Flirty = 8
return:
type: TinyLife.Actions.EmoteCategory
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Actions.EmoteCategory.Unable
commentId: F:TinyLife.Actions.EmoteCategory.Unable
id: Unable
@ -166,170 +201,72 @@ items:
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Unable
path: ../TinyLife/Actions/Emote.cs
startLine: 183
startLine: 157
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: "\nAn emote category that represents emotes that represent confusion or inability to do something\n"
example: []
syntax:
content: Unable = 16
return:
type: TinyLife.Actions.EmoteCategory
- uid: TinyLife.Actions.EmoteCategory.Food
commentId: F:TinyLife.Actions.EmoteCategory.Food
id: Food
parent: TinyLife.Actions.EmoteCategory
langs:
- csharp
- vb
name: Food
nameWithType: EmoteCategory.Food
fullName: TinyLife.Actions.EmoteCategory.Food
type: Field
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Food
path: ../TinyLife/Actions/Emote.cs
startLine: 184
assemblies:
- Tiny Life
namespace: TinyLife.Actions
syntax:
content: Food = 32
return:
type: TinyLife.Actions.EmoteCategory
- uid: TinyLife.Actions.EmoteCategory.Object
commentId: F:TinyLife.Actions.EmoteCategory.Object
id: Object
parent: TinyLife.Actions.EmoteCategory
langs:
- csharp
- vb
name: Object
nameWithType: EmoteCategory.Object
fullName: TinyLife.Actions.EmoteCategory.Object
type: Field
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Object
path: ../TinyLife/Actions/Emote.cs
startLine: 185
assemblies:
- Tiny Life
namespace: TinyLife.Actions
syntax:
content: Object = 64
return:
type: TinyLife.Actions.EmoteCategory
- uid: TinyLife.Actions.EmoteCategory.Emotion
commentId: F:TinyLife.Actions.EmoteCategory.Emotion
id: Emotion
parent: TinyLife.Actions.EmoteCategory
langs:
- csharp
- vb
name: Emotion
nameWithType: EmoteCategory.Emotion
fullName: TinyLife.Actions.EmoteCategory.Emotion
type: Field
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Emotion
path: ../TinyLife/Actions/Emote.cs
startLine: 186
assemblies:
- Tiny Life
namespace: TinyLife.Actions
syntax:
content: Emotion = 128
return:
type: TinyLife.Actions.EmoteCategory
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
references:
- uid: TinyLife.Actions.Emote
commentId: T:TinyLife.Actions.Emote
parent: TinyLife.Actions
href: TinyLife.Actions.Emote.html
name: Emote
nameWithType: Emote
fullName: TinyLife.Actions.Emote
- 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: TinyLife.Actions.EmoteCategory.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<EmoteCategory>(EmoteCategory)
nameWithType: Extensions.JsonCopy<EmoteCategory>(EmoteCategory)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.EmoteCategory>(TinyLife.Actions.EmoteCategory)
nameWithType.vb: Extensions.JsonCopy(Of EmoteCategory)(EmoteCategory)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.EmoteCategory)(TinyLife.Actions.EmoteCategory)
name.vb: JsonCopy(Of EmoteCategory)(EmoteCategory)
name: JsonCopy<EmoteCategory>()
nameWithType: Extensions.JsonCopy<EmoteCategory>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.EmoteCategory>()
nameWithType.vb: Extensions.JsonCopy(Of EmoteCategory)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.EmoteCategory)()
name.vb: JsonCopy(Of EmoteCategory)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.EmoteCategory)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Actions.EmoteCategory
name: EmoteCategory
href: TinyLife.Actions.EmoteCategory.html
- name: '>'
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<EmoteCategory>
nameWithType: Extensions.JsonCopy<EmoteCategory>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.EmoteCategory>
- name: (
- uid: TinyLife.Actions.EmoteCategory
name: EmoteCategory
href: TinyLife.Actions.EmoteCategory.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.EmoteCategory)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of EmoteCategory)
nameWithType: Extensions.JsonCopy(Of EmoteCategory)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.EmoteCategory)
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.EmoteCategory
name: EmoteCategory
href: TinyLife.Actions.EmoteCategory.html
- name: )
- name: (
- uid: TinyLife.Actions.EmoteCategory
name: EmoteCategory
href: TinyLife.Actions.EmoteCategory.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- 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)
@ -338,59 +275,46 @@ references:
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: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
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: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- 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: TinyLife.Actions.EmoteCategory
commentId: T:TinyLife.Actions.EmoteCategory
parent: TinyLife.Actions
href: TinyLife.Actions.EmoteCategory.html
name: EmoteCategory
nameWithType: EmoteCategory
fullName: TinyLife.Actions.EmoteCategory

View file

@ -1,831 +0,0 @@
### YamlMime:ManagedReference
items:
- uid: TinyLife.Actions.EmoteChoices
commentId: T:TinyLife.Actions.EmoteChoices
id: EmoteChoices
parent: TinyLife.Actions
children:
- TinyLife.Actions.EmoteChoices.#ctor(TinyLife.Actions.EmoteCategory)
- TinyLife.Actions.EmoteChoices.#ctor(TinyLife.Actions.Emote[])
- TinyLife.Actions.EmoteChoices.GetEmote(System.Random)
- TinyLife.Actions.EmoteChoices.op_Implicit(TinyLife.Actions.Emote)~TinyLife.Actions.EmoteChoices
- TinyLife.Actions.EmoteChoices.op_Implicit(TinyLife.Actions.EmoteCategory)~TinyLife.Actions.EmoteChoices
- TinyLife.Actions.EmoteChoices.op_Implicit(TinyLife.Actions.Emote[])~TinyLife.Actions.EmoteChoices
langs:
- csharp
- vb
name: EmoteChoices
nameWithType: EmoteChoices
fullName: TinyLife.Actions.EmoteChoices
type: Struct
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EmoteChoices
path: ../TinyLife/Actions/Emote.cs
startLine: 122
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A structure used by <xref href="TinyLife.Objects.PersonLike.DisplayEmote(TinyLife.Actions.EmoteChoices%2cSystem.Boolean%2cSystem.Single%2cSystem.Single)" data-throw-if-not-resolved="false"></xref> to allow passing either a combined <xref href="TinyLife.Actions.EmoteCategory" data-throw-if-not-resolved="false"></xref> flag, or a set of specific <xref href="TinyLife.Actions.Emote" data-throw-if-not-resolved="false"></xref> instances, from which a final emote should be chosen.
example: []
syntax:
content: 'public readonly record struct EmoteChoices : IEquatable<EmoteChoices>'
content.vb: Public Structure EmoteChoices Implements IEquatable(Of EmoteChoices)
implements:
- System.IEquatable{TinyLife.Actions.EmoteChoices}
inheritedMembers:
- System.ValueType.Equals(System.Object)
- System.ValueType.GetHashCode
- System.ValueType.ToString
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetType
- System.Object.ReferenceEquals(System.Object,System.Object)
extensionMethods:
- TinyLife.Actions.EmoteChoices.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.Actions.EmoteChoices.#ctor(TinyLife.Actions.EmoteCategory)
commentId: M:TinyLife.Actions.EmoteChoices.#ctor(TinyLife.Actions.EmoteCategory)
id: '#ctor(TinyLife.Actions.EmoteCategory)'
parent: TinyLife.Actions.EmoteChoices
langs:
- csharp
- vb
name: EmoteChoices(EmoteCategory)
nameWithType: EmoteChoices.EmoteChoices(EmoteCategory)
fullName: TinyLife.Actions.EmoteChoices.EmoteChoices(TinyLife.Actions.EmoteCategory)
type: Constructor
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/Actions/Emote.cs
startLine: 129
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: Creates a new set of emote choices from the given <code class="paramref">categories</code>.
example: []
syntax:
content: public EmoteChoices(EmoteCategory categories)
parameters:
- id: categories
type: TinyLife.Actions.EmoteCategory
content.vb: Public Sub New(categories As EmoteCategory)
overload: TinyLife.Actions.EmoteChoices.#ctor*
nameWithType.vb: EmoteChoices.New(EmoteCategory)
fullName.vb: TinyLife.Actions.EmoteChoices.New(TinyLife.Actions.EmoteCategory)
name.vb: New(EmoteCategory)
- uid: TinyLife.Actions.EmoteChoices.#ctor(TinyLife.Actions.Emote[])
commentId: M:TinyLife.Actions.EmoteChoices.#ctor(TinyLife.Actions.Emote[])
id: '#ctor(TinyLife.Actions.Emote[])'
parent: TinyLife.Actions.EmoteChoices
langs:
- csharp
- vb
name: EmoteChoices(params Emote[])
nameWithType: EmoteChoices.EmoteChoices(params Emote[])
fullName: TinyLife.Actions.EmoteChoices.EmoteChoices(params TinyLife.Actions.Emote[])
type: Constructor
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/Actions/Emote.cs
startLine: 136
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: Creates a new set of emote choices from the given <code class="paramref">emotes</code>.
example: []
syntax:
content: public EmoteChoices(params Emote[] emotes)
parameters:
- id: emotes
type: TinyLife.Actions.Emote[]
content.vb: Public Sub New(ParamArray emotes As Emote())
overload: TinyLife.Actions.EmoteChoices.#ctor*
nameWithType.vb: EmoteChoices.New(ParamArray Emote())
fullName.vb: TinyLife.Actions.EmoteChoices.New(ParamArray TinyLife.Actions.Emote())
name.vb: New(ParamArray Emote())
- uid: TinyLife.Actions.EmoteChoices.GetEmote(System.Random)
commentId: M:TinyLife.Actions.EmoteChoices.GetEmote(System.Random)
id: GetEmote(System.Random)
parent: TinyLife.Actions.EmoteChoices
langs:
- csharp
- vb
name: GetEmote(Random)
nameWithType: EmoteChoices.GetEmote(Random)
fullName: TinyLife.Actions.EmoteChoices.GetEmote(System.Random)
type: Method
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetEmote
path: ../TinyLife/Actions/Emote.cs
startLine: 145
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: Returns an emote from this set of choices, using the given <code class="paramref">random</code> to choose one.
example: []
syntax:
content: public Emote GetEmote(Random random)
parameters:
- id: random
type: System.Random
description: ''
return:
type: TinyLife.Actions.Emote
description: ''
content.vb: Public Function GetEmote(random As Random) As Emote
overload: TinyLife.Actions.EmoteChoices.GetEmote*
- uid: TinyLife.Actions.EmoteChoices.op_Implicit(TinyLife.Actions.EmoteCategory)~TinyLife.Actions.EmoteChoices
commentId: M:TinyLife.Actions.EmoteChoices.op_Implicit(TinyLife.Actions.EmoteCategory)~TinyLife.Actions.EmoteChoices
id: op_Implicit(TinyLife.Actions.EmoteCategory)~TinyLife.Actions.EmoteChoices
parent: TinyLife.Actions.EmoteChoices
langs:
- csharp
- vb
name: implicit operator EmoteChoices(EmoteCategory)
nameWithType: EmoteChoices.implicit operator EmoteChoices(EmoteCategory)
fullName: TinyLife.Actions.EmoteChoices.implicit operator TinyLife.Actions.EmoteChoices(TinyLife.Actions.EmoteCategory)
type: Operator
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: op_Implicit
path: ../TinyLife/Actions/Emote.cs
startLine: 152
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: Implicitly converts an <xref href="TinyLife.Actions.EmoteCategory" data-throw-if-not-resolved="false"></xref> to an <xref href="TinyLife.Actions.EmoteChoices" data-throw-if-not-resolved="false"></xref> instance.
example: []
syntax:
content: public static implicit operator EmoteChoices(EmoteCategory category)
parameters:
- id: category
type: TinyLife.Actions.EmoteCategory
return:
type: TinyLife.Actions.EmoteChoices
content.vb: Public Shared Widening Operator CType(category As EmoteCategory) As EmoteChoices
overload: TinyLife.Actions.EmoteChoices.op_Implicit*
nameWithType.vb: EmoteChoices.CType(EmoteCategory)
fullName.vb: TinyLife.Actions.EmoteChoices.CType(TinyLife.Actions.EmoteCategory)
name.vb: CType(EmoteCategory)
- uid: TinyLife.Actions.EmoteChoices.op_Implicit(TinyLife.Actions.Emote[])~TinyLife.Actions.EmoteChoices
commentId: M:TinyLife.Actions.EmoteChoices.op_Implicit(TinyLife.Actions.Emote[])~TinyLife.Actions.EmoteChoices
id: op_Implicit(TinyLife.Actions.Emote[])~TinyLife.Actions.EmoteChoices
parent: TinyLife.Actions.EmoteChoices
langs:
- csharp
- vb
name: implicit operator EmoteChoices(Emote[])
nameWithType: EmoteChoices.implicit operator EmoteChoices(Emote[])
fullName: TinyLife.Actions.EmoteChoices.implicit operator TinyLife.Actions.EmoteChoices(TinyLife.Actions.Emote[])
type: Operator
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: op_Implicit
path: ../TinyLife/Actions/Emote.cs
startLine: 159
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: Implicitly converts an array of <xref href="TinyLife.Actions.Emote" data-throw-if-not-resolved="false"></xref> instances to an <xref href="TinyLife.Actions.EmoteChoices" data-throw-if-not-resolved="false"></xref> instance.
example: []
syntax:
content: public static implicit operator EmoteChoices(Emote[] emotes)
parameters:
- id: emotes
type: TinyLife.Actions.Emote[]
return:
type: TinyLife.Actions.EmoteChoices
content.vb: Public Shared Widening Operator CType(emotes As Emote()) As EmoteChoices
overload: TinyLife.Actions.EmoteChoices.op_Implicit*
nameWithType.vb: EmoteChoices.CType(Emote())
fullName.vb: TinyLife.Actions.EmoteChoices.CType(TinyLife.Actions.Emote())
name.vb: CType(Emote())
- uid: TinyLife.Actions.EmoteChoices.op_Implicit(TinyLife.Actions.Emote)~TinyLife.Actions.EmoteChoices
commentId: M:TinyLife.Actions.EmoteChoices.op_Implicit(TinyLife.Actions.Emote)~TinyLife.Actions.EmoteChoices
id: op_Implicit(TinyLife.Actions.Emote)~TinyLife.Actions.EmoteChoices
parent: TinyLife.Actions.EmoteChoices
langs:
- csharp
- vb
name: implicit operator EmoteChoices(Emote)
nameWithType: EmoteChoices.implicit operator EmoteChoices(Emote)
fullName: TinyLife.Actions.EmoteChoices.implicit operator TinyLife.Actions.EmoteChoices(TinyLife.Actions.Emote)
type: Operator
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: op_Implicit
path: ../TinyLife/Actions/Emote.cs
startLine: 166
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: Implicitly converts an <xref href="TinyLife.Actions.Emote" data-throw-if-not-resolved="false"></xref> to an <xref href="TinyLife.Actions.EmoteChoices" data-throw-if-not-resolved="false"></xref> instance.
example: []
syntax:
content: public static implicit operator EmoteChoices(Emote emote)
parameters:
- id: emote
type: TinyLife.Actions.Emote
return:
type: TinyLife.Actions.EmoteChoices
content.vb: Public Shared Widening Operator CType(emote As Emote) As EmoteChoices
overload: TinyLife.Actions.EmoteChoices.op_Implicit*
nameWithType.vb: EmoteChoices.CType(Emote)
fullName.vb: TinyLife.Actions.EmoteChoices.CType(TinyLife.Actions.Emote)
name.vb: CType(Emote)
references:
- uid: TinyLife.Objects.PersonLike.DisplayEmote(TinyLife.Actions.EmoteChoices,System.Boolean,System.Single,System.Single)
commentId: M:TinyLife.Objects.PersonLike.DisplayEmote(TinyLife.Actions.EmoteChoices,System.Boolean,System.Single,System.Single)
parent: TinyLife.Objects.PersonLike
isExternal: true
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_DisplayEmote_TinyLife_Actions_EmoteChoices_System_Boolean_System_Single_System_Single_
name: DisplayEmote(EmoteChoices, bool, float, float)
nameWithType: PersonLike.DisplayEmote(EmoteChoices, bool, float, float)
fullName: TinyLife.Objects.PersonLike.DisplayEmote(TinyLife.Actions.EmoteChoices, bool, float, float)
nameWithType.vb: PersonLike.DisplayEmote(EmoteChoices, Boolean, Single, Single)
fullName.vb: TinyLife.Objects.PersonLike.DisplayEmote(TinyLife.Actions.EmoteChoices, Boolean, Single, Single)
name.vb: DisplayEmote(EmoteChoices, Boolean, Single, Single)
spec.csharp:
- uid: TinyLife.Objects.PersonLike.DisplayEmote(TinyLife.Actions.EmoteChoices,System.Boolean,System.Single,System.Single)
name: DisplayEmote
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_DisplayEmote_TinyLife_Actions_EmoteChoices_System_Boolean_System_Single_System_Single_
- name: (
- uid: TinyLife.Actions.EmoteChoices
name: EmoteChoices
href: TinyLife.Actions.EmoteChoices.html
- name: ','
- name: " "
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: )
spec.vb:
- uid: TinyLife.Objects.PersonLike.DisplayEmote(TinyLife.Actions.EmoteChoices,System.Boolean,System.Single,System.Single)
name: DisplayEmote
href: TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_DisplayEmote_TinyLife_Actions_EmoteChoices_System_Boolean_System_Single_System_Single_
- name: (
- uid: TinyLife.Actions.EmoteChoices
name: EmoteChoices
href: TinyLife.Actions.EmoteChoices.html
- name: ','
- name: " "
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: )
- uid: TinyLife.Actions.EmoteCategory
commentId: T:TinyLife.Actions.EmoteCategory
parent: TinyLife.Actions
href: TinyLife.Actions.EmoteCategory.html
name: EmoteCategory
nameWithType: EmoteCategory
fullName: TinyLife.Actions.EmoteCategory
- uid: TinyLife.Actions.Emote
commentId: T:TinyLife.Actions.Emote
parent: TinyLife.Actions
href: TinyLife.Actions.Emote.html
name: Emote
nameWithType: Emote
fullName: TinyLife.Actions.Emote
- 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.IEquatable{TinyLife.Actions.EmoteChoices}
commentId: T:System.IEquatable{TinyLife.Actions.EmoteChoices}
parent: System
definition: System.IEquatable`1
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
name: IEquatable<EmoteChoices>
nameWithType: IEquatable<EmoteChoices>
fullName: System.IEquatable<TinyLife.Actions.EmoteChoices>
nameWithType.vb: IEquatable(Of EmoteChoices)
fullName.vb: System.IEquatable(Of TinyLife.Actions.EmoteChoices)
name.vb: IEquatable(Of EmoteChoices)
spec.csharp:
- uid: System.IEquatable`1
name: IEquatable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
- name: <
- uid: TinyLife.Actions.EmoteChoices
name: EmoteChoices
href: TinyLife.Actions.EmoteChoices.html
- name: '>'
spec.vb:
- uid: System.IEquatable`1
name: IEquatable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.EmoteChoices
name: EmoteChoices
href: TinyLife.Actions.EmoteChoices.html
- name: )
- uid: System.ValueType.Equals(System.Object)
commentId: M:System.ValueType.Equals(System.Object)
parent: System.ValueType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals
name: Equals(object)
nameWithType: ValueType.Equals(object)
fullName: System.ValueType.Equals(object)
nameWithType.vb: ValueType.Equals(Object)
fullName.vb: System.ValueType.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.ValueType.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.ValueType.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.ValueType.GetHashCode
commentId: M:System.ValueType.GetHashCode
parent: System.ValueType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode
name: GetHashCode()
nameWithType: ValueType.GetHashCode()
fullName: System.ValueType.GetHashCode()
spec.csharp:
- uid: System.ValueType.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.ValueType.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode
- name: (
- name: )
- uid: System.ValueType.ToString
commentId: M:System.ValueType.ToString
parent: System.ValueType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring
name: ToString()
nameWithType: ValueType.ToString()
fullName: System.ValueType.ToString()
spec.csharp:
- uid: System.ValueType.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring
- name: (
- name: )
spec.vb:
- uid: System.ValueType.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring
- name: (
- 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.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.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: TinyLife.Actions.EmoteChoices.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<EmoteChoices>(EmoteChoices)
nameWithType: Extensions.JsonCopy<EmoteChoices>(EmoteChoices)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.EmoteChoices>(TinyLife.Actions.EmoteChoices)
nameWithType.vb: Extensions.JsonCopy(Of EmoteChoices)(EmoteChoices)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.EmoteChoices)(TinyLife.Actions.EmoteChoices)
name.vb: JsonCopy(Of EmoteChoices)(EmoteChoices)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.EmoteChoices)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Actions.EmoteChoices
name: EmoteChoices
href: TinyLife.Actions.EmoteChoices.html
- name: '>'
- name: (
- uid: TinyLife.Actions.EmoteChoices
name: EmoteChoices
href: TinyLife.Actions.EmoteChoices.html
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.EmoteChoices)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.EmoteChoices
name: EmoteChoices
href: TinyLife.Actions.EmoteChoices.html
- name: )
- name: (
- uid: TinyLife.Actions.EmoteChoices
name: EmoteChoices
href: TinyLife.Actions.EmoteChoices.html
- name: )
- 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: System.IEquatable`1
commentId: T:System.IEquatable`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
name: IEquatable<T>
nameWithType: IEquatable<T>
fullName: System.IEquatable<T>
nameWithType.vb: IEquatable(Of T)
fullName.vb: System.IEquatable(Of T)
name.vb: IEquatable(Of T)
spec.csharp:
- uid: System.IEquatable`1
name: IEquatable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.IEquatable`1
name: IEquatable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.iequatable-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: System.ValueType
commentId: T:System.ValueType
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.valuetype
name: ValueType
nameWithType: ValueType
fullName: System.ValueType
- 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.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.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.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: TinyLife.Actions.EmoteChoices.#ctor*
commentId: Overload:TinyLife.Actions.EmoteChoices.#ctor
href: TinyLife.Actions.EmoteChoices.html#TinyLife_Actions_EmoteChoices__ctor_TinyLife_Actions_EmoteCategory_
name: EmoteChoices
nameWithType: EmoteChoices.EmoteChoices
fullName: TinyLife.Actions.EmoteChoices.EmoteChoices
nameWithType.vb: EmoteChoices.New
fullName.vb: TinyLife.Actions.EmoteChoices.New
name.vb: New
- uid: TinyLife.Actions.Emote[]
isExternal: true
href: TinyLife.Actions.Emote.html
name: Emote[]
nameWithType: Emote[]
fullName: TinyLife.Actions.Emote[]
nameWithType.vb: Emote()
fullName.vb: TinyLife.Actions.Emote()
name.vb: Emote()
spec.csharp:
- uid: TinyLife.Actions.Emote
name: Emote
href: TinyLife.Actions.Emote.html
- name: '['
- name: ']'
spec.vb:
- uid: TinyLife.Actions.Emote
name: Emote
href: TinyLife.Actions.Emote.html
- name: (
- name: )
- uid: TinyLife.Actions.EmoteChoices.GetEmote*
commentId: Overload:TinyLife.Actions.EmoteChoices.GetEmote
href: TinyLife.Actions.EmoteChoices.html#TinyLife_Actions_EmoteChoices_GetEmote_System_Random_
name: GetEmote
nameWithType: EmoteChoices.GetEmote
fullName: TinyLife.Actions.EmoteChoices.GetEmote
- uid: System.Random
commentId: T:System.Random
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.random
name: Random
nameWithType: Random
fullName: System.Random
- uid: TinyLife.Actions.EmoteChoices
commentId: T:TinyLife.Actions.EmoteChoices
parent: TinyLife.Actions
href: TinyLife.Actions.EmoteChoices.html
name: EmoteChoices
nameWithType: EmoteChoices
fullName: TinyLife.Actions.EmoteChoices
- uid: TinyLife.Actions.EmoteChoices.op_Implicit*
commentId: Overload:TinyLife.Actions.EmoteChoices.op_Implicit
name: implicit operator
nameWithType: EmoteChoices.implicit operator
fullName: TinyLife.Actions.EmoteChoices.implicit operator
nameWithType.vb: EmoteChoices.CType
fullName.vb: TinyLife.Actions.EmoteChoices.CType
name.vb: CType
spec.csharp:
- name: implicit
- name: " "
- name: operator

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -19,43 +19,16 @@ references:
- uid: TinyLife.Actions.Handlers.MultiActionHandler
commentId: T:TinyLife.Actions.Handlers.MultiActionHandler
parent: TinyLife.Actions.Handlers
href: TinyLife.Actions.Handlers.MultiActionHandler.html
name: MultiActionHandler
nameWithType: MultiActionHandler
fullName: TinyLife.Actions.Handlers.MultiActionHandler
- uid: TinyLife.Actions.Handlers.UnderlyingActionHandler
commentId: T:TinyLife.Actions.Handlers.UnderlyingActionHandler
href: TinyLife.Actions.Handlers.UnderlyingActionHandler.html
name: UnderlyingActionHandler
nameWithType: UnderlyingActionHandler
fullName: TinyLife.Actions.Handlers.UnderlyingActionHandler
- uid: TinyLife.Actions.Handlers
commentId: N:TinyLife.Actions.Handlers
href: TinyLife.html
name: TinyLife.Actions.Handlers
nameWithType: TinyLife.Actions.Handlers
fullName: TinyLife.Actions.Handlers
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Actions
name: Actions
href: TinyLife.Actions.html
- name: .
- uid: TinyLife.Actions.Handlers
name: Handlers
href: TinyLife.Actions.Handlers.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Actions
name: Actions
href: TinyLife.Actions.html
- name: .
- uid: TinyLife.Actions.Handlers
name: Handlers
href: TinyLife.Actions.Handlers.html

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,412 +0,0 @@
### YamlMime:ManagedReference
items:
- uid: TinyLife.Actions.MultiAction.Stage
commentId: T:TinyLife.Actions.MultiAction.Stage
id: MultiAction.Stage
parent: TinyLife.Actions
children:
- TinyLife.Actions.MultiAction.Stage.Done
- TinyLife.Actions.MultiAction.Stage.First
- TinyLife.Actions.MultiAction.Stage.Last
- TinyLife.Actions.MultiAction.Stage.Main
langs:
- csharp
- vb
name: MultiAction.Stage
nameWithType: MultiAction.Stage
fullName: TinyLife.Actions.MultiAction.Stage
type: Enum
source:
remote:
path: TinyLife/Actions/MultiAction.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Stage
path: ../TinyLife/Actions/MultiAction.cs
startLine: 202
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: An enumeration that defines the stage that a <xref href="TinyLife.Actions.MultiAction" data-throw-if-not-resolved="false"></xref> is currently in.
example: []
syntax:
content: protected enum MultiAction.Stage
content.vb: Protected Enum MultiAction.Stage
extensionMethods:
- TinyLife.Actions.MultiAction.Stage.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.Actions.MultiAction.Stage.First
commentId: F:TinyLife.Actions.MultiAction.Stage.First
id: First
parent: TinyLife.Actions.MultiAction.Stage
langs:
- csharp
- vb
name: First
nameWithType: MultiAction.Stage.First
fullName: TinyLife.Actions.MultiAction.Stage.First
type: Field
source:
remote:
path: TinyLife/Actions/MultiAction.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: First
path: ../TinyLife/Actions/MultiAction.cs
startLine: 207
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: The multi action is currently executing its first actions, created using <xref href="TinyLife.Actions.MultiAction.CreateFirstActions" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: First = 0
return:
type: TinyLife.Actions.MultiAction.Stage
- uid: TinyLife.Actions.MultiAction.Stage.Main
commentId: F:TinyLife.Actions.MultiAction.Stage.Main
id: Main
parent: TinyLife.Actions.MultiAction.Stage
langs:
- csharp
- vb
name: Main
nameWithType: MultiAction.Stage.Main
fullName: TinyLife.Actions.MultiAction.Stage.Main
type: Field
source:
remote:
path: TinyLife/Actions/MultiAction.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Main
path: ../TinyLife/Actions/MultiAction.cs
startLine: 211
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: The multi action is currently executing its main part, which involves <xref href="TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.Actions.MultiAction.AndThenIsCompleted" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: Main = 1
return:
type: TinyLife.Actions.MultiAction.Stage
- uid: TinyLife.Actions.MultiAction.Stage.Last
commentId: F:TinyLife.Actions.MultiAction.Stage.Last
id: Last
parent: TinyLife.Actions.MultiAction.Stage
langs:
- csharp
- vb
name: Last
nameWithType: MultiAction.Stage.Last
fullName: TinyLife.Actions.MultiAction.Stage.Last
type: Field
source:
remote:
path: TinyLife/Actions/MultiAction.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Last
path: ../TinyLife/Actions/MultiAction.cs
startLine: 215
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: The multi action is currently executing its alst actions, created using <xref href="TinyLife.Actions.MultiAction.CreateLastActions" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: Last = 2
return:
type: TinyLife.Actions.MultiAction.Stage
- uid: TinyLife.Actions.MultiAction.Stage.Done
commentId: F:TinyLife.Actions.MultiAction.Stage.Done
id: Done
parent: TinyLife.Actions.MultiAction.Stage
langs:
- csharp
- vb
name: Done
nameWithType: MultiAction.Stage.Done
fullName: TinyLife.Actions.MultiAction.Stage.Done
type: Field
source:
remote:
path: TinyLife/Actions/MultiAction.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Done
path: ../TinyLife/Actions/MultiAction.cs
startLine: 219
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: The multi action has completed.
example: []
syntax:
content: Done = 3
return:
type: TinyLife.Actions.MultiAction.Stage
references:
- 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
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: TinyLife.Actions.MultiAction.Stage.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<Stage>(Stage)
nameWithType: Extensions.JsonCopy<MultiAction.Stage>(MultiAction.Stage)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.MultiAction.Stage>(TinyLife.Actions.MultiAction.Stage)
nameWithType.vb: Extensions.JsonCopy(Of MultiAction.Stage)(MultiAction.Stage)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.MultiAction.Stage)(TinyLife.Actions.MultiAction.Stage)
name.vb: JsonCopy(Of Stage)(Stage)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.MultiAction.Stage)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Actions.MultiAction.Stage
name: Stage
href: TinyLife.Actions.MultiAction.Stage.html
- name: '>'
- name: (
- uid: TinyLife.Actions.MultiAction.Stage
name: Stage
href: TinyLife.Actions.MultiAction.Stage.html
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.MultiAction.Stage)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.MultiAction.Stage
name: Stage
href: TinyLife.Actions.MultiAction.Stage.html
- name: )
- name: (
- uid: TinyLife.Actions.MultiAction.Stage
name: Stage
href: TinyLife.Actions.MultiAction.Stage.html
- name: )
- 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: TinyLife.Actions.MultiAction.CreateFirstActions
commentId: M:TinyLife.Actions.MultiAction.CreateFirstActions
parent: TinyLife.Actions.MultiAction
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateFirstActions
name: CreateFirstActions()
nameWithType: MultiAction.CreateFirstActions()
fullName: TinyLife.Actions.MultiAction.CreateFirstActions()
spec.csharp:
- uid: TinyLife.Actions.MultiAction.CreateFirstActions
name: CreateFirstActions
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateFirstActions
- name: (
- name: )
spec.vb:
- uid: TinyLife.Actions.MultiAction.CreateFirstActions
name: CreateFirstActions
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateFirstActions
- name: (
- name: )
- uid: TinyLife.Actions.MultiAction.Stage
commentId: T:TinyLife.Actions.MultiAction.Stage
parent: TinyLife.Actions
href: TinyLife.Actions.MultiAction.html
name: MultiAction.Stage
nameWithType: MultiAction.Stage
fullName: TinyLife.Actions.MultiAction.Stage
spec.csharp:
- uid: TinyLife.Actions.MultiAction
name: MultiAction
href: TinyLife.Actions.MultiAction.html
- name: .
- uid: TinyLife.Actions.MultiAction.Stage
name: Stage
href: TinyLife.Actions.MultiAction.Stage.html
spec.vb:
- uid: TinyLife.Actions.MultiAction
name: MultiAction
href: TinyLife.Actions.MultiAction.html
- name: .
- uid: TinyLife.Actions.MultiAction.Stage
name: Stage
href: TinyLife.Actions.MultiAction.Stage.html
- uid: TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.MultiAction
isExternal: true
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
name: AndThenUpdate(GameTime, TimeSpan, float)
nameWithType: MultiAction.AndThenUpdate(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: MultiAction.AndThenUpdate(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: AndThenUpdate(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: AndThenUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
- name: (
- uid: Microsoft.Xna.Framework.GameTime
name: GameTime
isExternal: true
- name: ','
- name: " "
- uid: System.TimeSpan
name: TimeSpan
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.timespan
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: )
spec.vb:
- uid: TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: AndThenUpdate
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenUpdate_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
- name: (
- uid: Microsoft.Xna.Framework.GameTime
name: GameTime
isExternal: true
- name: ','
- name: " "
- uid: System.TimeSpan
name: TimeSpan
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.timespan
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: )
- uid: TinyLife.Actions.MultiAction.AndThenIsCompleted
commentId: M:TinyLife.Actions.MultiAction.AndThenIsCompleted
parent: TinyLife.Actions.MultiAction
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenIsCompleted
name: AndThenIsCompleted()
nameWithType: MultiAction.AndThenIsCompleted()
fullName: TinyLife.Actions.MultiAction.AndThenIsCompleted()
spec.csharp:
- uid: TinyLife.Actions.MultiAction.AndThenIsCompleted
name: AndThenIsCompleted
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenIsCompleted
- name: (
- name: )
spec.vb:
- uid: TinyLife.Actions.MultiAction.AndThenIsCompleted
name: AndThenIsCompleted
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenIsCompleted
- name: (
- name: )
- uid: TinyLife.Actions.MultiAction.CreateLastActions
commentId: M:TinyLife.Actions.MultiAction.CreateLastActions
parent: TinyLife.Actions.MultiAction
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions
name: CreateLastActions()
nameWithType: MultiAction.CreateLastActions()
fullName: TinyLife.Actions.MultiAction.CreateLastActions()
spec.csharp:
- uid: TinyLife.Actions.MultiAction.CreateLastActions
name: CreateLastActions
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions
- name: (
- name: )
spec.vb:
- uid: TinyLife.Actions.MultiAction.CreateLastActions
name: CreateLastActions
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_CreateLastActions
- name: (
- name: )

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,249 @@
### YamlMime:ManagedReference
items:
- uid: TinyLife.Actions.ResultType
commentId: T:TinyLife.Actions.ResultType
id: ResultType
parent: TinyLife.Actions
children:
- TinyLife.Actions.ResultType.Hidden
- TinyLife.Actions.ResultType.Invalid
- TinyLife.Actions.ResultType.Valid
langs:
- csharp
- vb
name: ResultType
nameWithType: ResultType
fullName: TinyLife.Actions.ResultType
type: Enum
source:
remote:
path: TinyLife/Actions/CanExecuteResult.cs
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ResultType
path: ../TinyLife/Actions/CanExecuteResult.cs
startLine: 29
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: "\nA type of result that a <xref href=\"TinyLife.Actions.CanExecuteResult\" data-throw-if-not-resolved=\"false\"></xref> can have.\nIn general, custom <xref href=\"TinyLife.Actions.CanExecuteResult\" data-throw-if-not-resolved=\"false\"></xref> instances will have the <xref href=\"TinyLife.Actions.ResultType.Invalid\" data-throw-if-not-resolved=\"false\"></xref> result type, as <xref href=\"TinyLife.Actions.ResultType.Valid\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Actions.ResultType.Hidden\" data-throw-if-not-resolved=\"false\"></xref> are already covered by their respective <xref href=\"TinyLife.Actions.CanExecuteResult\" data-throw-if-not-resolved=\"false\"></xref> counterparts.\n"
example: []
syntax:
content: public enum ResultType
content.vb: Public Enum ResultType
extensionMethods:
- TinyLife.Actions.ResultType.TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- enum
modifiers.vb:
- Public
- Enum
- uid: TinyLife.Actions.ResultType.Valid
commentId: F:TinyLife.Actions.ResultType.Valid
id: Valid
parent: TinyLife.Actions.ResultType
langs:
- csharp
- vb
name: Valid
nameWithType: ResultType.Valid
fullName: TinyLife.Actions.ResultType.Valid
type: Field
source:
remote:
path: TinyLife/Actions/CanExecuteResult.cs
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Valid
path: ../TinyLife/Actions/CanExecuteResult.cs
startLine: 35
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: "\nA valid <xref href=\"TinyLife.Actions.ResultType\" data-throw-if-not-resolved=\"false\"></xref> indicates that the action can be executed.\n<xref href=\"TinyLife.Actions.CanExecuteResult\" data-throw-if-not-resolved=\"false\"></xref> instances with this type usually don&apos;t display their name to the player.\n"
example: []
syntax:
content: Valid = 0
return:
type: TinyLife.Actions.ResultType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Actions.ResultType.Invalid
commentId: F:TinyLife.Actions.ResultType.Invalid
id: Invalid
parent: TinyLife.Actions.ResultType
langs:
- csharp
- vb
name: Invalid
nameWithType: ResultType.Invalid
fullName: TinyLife.Actions.ResultType.Invalid
type: Field
source:
remote:
path: TinyLife/Actions/CanExecuteResult.cs
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Invalid
path: ../TinyLife/Actions/CanExecuteResult.cs
startLine: 39
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: "\nAn invalid <xref href=\"TinyLife.Actions.ResultType\" data-throw-if-not-resolved=\"false\"></xref> signifies that the action cannot be executed for some reason.\n"
example: []
syntax:
content: Invalid = 1
return:
type: TinyLife.Actions.ResultType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Actions.ResultType.Hidden
commentId: F:TinyLife.Actions.ResultType.Hidden
id: Hidden
parent: TinyLife.Actions.ResultType
langs:
- csharp
- vb
name: Hidden
nameWithType: ResultType.Hidden
fullName: TinyLife.Actions.ResultType.Hidden
type: Field
source:
remote:
path: TinyLife/Actions/CanExecuteResult.cs
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Hidden
path: ../TinyLife/Actions/CanExecuteResult.cs
startLine: 44
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: "\nA hidden <xref href=\"TinyLife.Actions.ResultType\" data-throw-if-not-resolved=\"false\"></xref> indicates that the action cannot be executed, and shouldn&apos;t be displayed as a disallowed option to the player.\n<xref href=\"TinyLife.Actions.CanExecuteResult\" data-throw-if-not-resolved=\"false\"></xref> instances with this type usually don&apos;t display their name to the player.\n"
example: []
syntax:
content: Hidden = 2
return:
type: TinyLife.Actions.ResultType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
references:
- uid: TinyLife.Actions.CanExecuteResult
commentId: T:TinyLife.Actions.CanExecuteResult
parent: TinyLife.Actions
name: CanExecuteResult
nameWithType: CanExecuteResult
fullName: TinyLife.Actions.CanExecuteResult
- uid: TinyLife.Actions.ResultType.Invalid
commentId: F:TinyLife.Actions.ResultType.Invalid
isExternal: true
- uid: TinyLife.Actions.ResultType.Valid
commentId: F:TinyLife.Actions.ResultType.Valid
isExternal: true
- uid: TinyLife.Actions.ResultType.Hidden
commentId: F:TinyLife.Actions.ResultType.Hidden
isExternal: true
- uid: TinyLife.Actions
commentId: N:TinyLife.Actions
name: TinyLife.Actions
nameWithType: TinyLife.Actions
fullName: TinyLife.Actions
- uid: TinyLife.Actions.ResultType.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy<ResultType>()
nameWithType: Extensions.JsonCopy<ResultType>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.ResultType>()
nameWithType.vb: Extensions.JsonCopy(Of ResultType)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.ResultType)()
name.vb: JsonCopy(Of ResultType)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<ResultType>
nameWithType: Extensions.JsonCopy<ResultType>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.ResultType>
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of ResultType)
nameWithType: Extensions.JsonCopy(Of ResultType)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.ResultType)
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy<T>(T)
nameWithType: Extensions.JsonCopy<T>(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb: JsonCopy(Of T)(T)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
- uid: TinyLife.Actions.ResultType
commentId: T:TinyLife.Actions.ResultType
parent: TinyLife.Actions
name: ResultType
nameWithType: ResultType
fullName: TinyLife.Actions.ResultType

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -15,34 +15,25 @@ items:
source:
remote:
path: TinyLife/Actions/TalkAction.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EvaluationResult
path: ../TinyLife/Actions/TalkAction.cs
startLine: 481
startLine: 492
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A delegate that is used for <xref href="TinyLife.Actions.TalkAction.TalkSettings.EvaluateSimple(TinyLife.Actions.Action%2cTinyLife.Objects.PersonLike%2cSystem.Single%2cSystem.Single)" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.Actions.TalkAction.TalkSettings.EvaluateFully(TinyLife.Actions.SocialAction)" data-throw-if-not-resolved="false"></xref>.
summary: "\nA delegate that is used for <xref href=\"TinyLife.Actions.TalkAction.TalkSettings.EvaluateSimple(TinyLife.Actions.Action%2cTinyLife.Objects.Person%2cSystem.Single%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Actions.TalkAction.TalkSettings.EvaluateFully(TinyLife.Actions.SocialAction)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: public delegate void TalkAction.TalkSettings.EvaluationResult(ActionInfo info, PersonLike partner, float originalGain, float originalRomancePercentage, float originalGoBadlyChance, ref float romanceGain, ref float friendshipGain, ref float romanceLoss, ref float friendshipLoss, ref float goBadlyChance)
content: public delegate void EvaluationResult(Action action, Person partner, ref float romanceGain, ref float friendshipGain, ref float romanceLoss, ref float friendshipLoss, ref float goBadlyChance);
parameters:
- id: info
type: TinyLife.Actions.ActionInfo
description: The action info that is being evaluated
- id: action
type: TinyLife.Actions.Action
description: The action that is being evaluated
- id: partner
type: TinyLife.Objects.PersonLike
type: TinyLife.Objects.Person
description: The partner of the action.
- id: originalGain
type: System.Single
description: The amount of friendship and romance points that should be gained as a result of this action succeeding, without any default changes applied
- id: originalRomancePercentage
type: System.Single
description: The amount of romance, out of <code class="paramref">originalGain</code> that should be gained as a result of this action succeeding, without any default changes applied
- id: originalGoBadlyChance
type: System.Single
description: The chance, between 0 and 1, that the conversation should end badly. This value doesn't yet have any default changes applied.
- id: romanceGain
type: System.Single
description: The amount of romance points that should be gained as a result of this action succeeding, which already has all default changes applied
@ -58,187 +49,80 @@ items:
- id: goBadlyChance
type: System.Single
description: The chance, between 0 and 1, that the conversation should end badly. This value already has all of the default changes applied.
content.vb: Public Delegate Sub TalkAction.TalkSettings.EvaluationResult(info As ActionInfo, partner As PersonLike, originalGain As Single, originalRomancePercentage As Single, originalGoBadlyChance As Single, romanceGain As Single, friendshipGain As Single, romanceLoss As Single, friendshipLoss As Single, goBadlyChance As Single)
content.vb: Public Delegate Sub EvaluationResult(action As Action, partner As Person, ByRef romanceGain As Single, ByRef friendshipGain As Single, ByRef romanceLoss As Single, ByRef friendshipLoss As Single, ByRef goBadlyChance As Single)
extensionMethods:
- TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult.TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- delegate
modifiers.vb:
- Public
- Delegate
references:
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluateSimple(TinyLife.Actions.Action,TinyLife.Objects.PersonLike,System.Single,System.Single)
commentId: M:TinyLife.Actions.TalkAction.TalkSettings.EvaluateSimple(TinyLife.Actions.Action,TinyLife.Objects.PersonLike,System.Single,System.Single)
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluateSimple(TinyLife.Actions.Action,TinyLife.Objects.Person,System.Single,System.Single)
commentId: M:TinyLife.Actions.TalkAction.TalkSettings.EvaluateSimple(TinyLife.Actions.Action,TinyLife.Objects.Person,System.Single,System.Single)
isExternal: true
href: TinyLife.Actions.TalkAction.TalkSettings.html#TinyLife_Actions_TalkAction_TalkSettings_EvaluateSimple_TinyLife_Actions_Action_TinyLife_Objects_PersonLike_System_Single_System_Single_
name: EvaluateSimple(Action, PersonLike, float, float)
nameWithType: TalkAction.TalkSettings.EvaluateSimple(Action, PersonLike, float, float)
fullName: TinyLife.Actions.TalkAction.TalkSettings.EvaluateSimple(TinyLife.Actions.Action, TinyLife.Objects.PersonLike, float, float)
nameWithType.vb: TalkAction.TalkSettings.EvaluateSimple(Action, PersonLike, Single, Single)
fullName.vb: TinyLife.Actions.TalkAction.TalkSettings.EvaluateSimple(TinyLife.Actions.Action, TinyLife.Objects.PersonLike, Single, Single)
name.vb: EvaluateSimple(Action, PersonLike, Single, Single)
spec.csharp:
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluateSimple(TinyLife.Actions.Action,TinyLife.Objects.PersonLike,System.Single,System.Single)
name: EvaluateSimple
href: TinyLife.Actions.TalkAction.TalkSettings.html#TinyLife_Actions_TalkAction_TalkSettings_EvaluateSimple_TinyLife_Actions_Action_TinyLife_Objects_PersonLike_System_Single_System_Single_
- name: (
- uid: TinyLife.Actions.Action
name: Action
href: TinyLife.Actions.Action.html
- name: ','
- name: " "
- uid: TinyLife.Objects.PersonLike
name: PersonLike
href: TinyLife.Objects.PersonLike.html
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: ','
- name: " "
- uid: System.Single
name: float
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: )
spec.vb:
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluateSimple(TinyLife.Actions.Action,TinyLife.Objects.PersonLike,System.Single,System.Single)
name: EvaluateSimple
href: TinyLife.Actions.TalkAction.TalkSettings.html#TinyLife_Actions_TalkAction_TalkSettings_EvaluateSimple_TinyLife_Actions_Action_TinyLife_Objects_PersonLike_System_Single_System_Single_
- name: (
- uid: TinyLife.Actions.Action
name: Action
href: TinyLife.Actions.Action.html
- name: ','
- name: " "
- uid: TinyLife.Objects.PersonLike
name: PersonLike
href: TinyLife.Objects.PersonLike.html
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: ','
- name: " "
- uid: System.Single
name: Single
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
- name: )
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluateFully(TinyLife.Actions.SocialAction)
commentId: M:TinyLife.Actions.TalkAction.TalkSettings.EvaluateFully(TinyLife.Actions.SocialAction)
href: TinyLife.Actions.TalkAction.TalkSettings.html#TinyLife_Actions_TalkAction_TalkSettings_EvaluateFully_TinyLife_Actions_SocialAction_
name: EvaluateFully(SocialAction)
nameWithType: TalkAction.TalkSettings.EvaluateFully(SocialAction)
fullName: TinyLife.Actions.TalkAction.TalkSettings.EvaluateFully(TinyLife.Actions.SocialAction)
spec.csharp:
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluateFully(TinyLife.Actions.SocialAction)
name: EvaluateFully
href: TinyLife.Actions.TalkAction.TalkSettings.html#TinyLife_Actions_TalkAction_TalkSettings_EvaluateFully_TinyLife_Actions_SocialAction_
- name: (
- uid: TinyLife.Actions.SocialAction
name: SocialAction
href: TinyLife.Actions.SocialAction.html
- name: )
spec.vb:
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluateFully(TinyLife.Actions.SocialAction)
name: EvaluateFully
href: TinyLife.Actions.TalkAction.TalkSettings.html#TinyLife_Actions_TalkAction_TalkSettings_EvaluateFully_TinyLife_Actions_SocialAction_
- name: (
- uid: TinyLife.Actions.SocialAction
name: SocialAction
href: TinyLife.Actions.SocialAction.html
- name: )
isExternal: true
- 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: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult.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<EvaluationResult>(EvaluationResult)
nameWithType: Extensions.JsonCopy<TalkAction.TalkSettings.EvaluationResult>(TalkAction.TalkSettings.EvaluationResult)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult>(TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult)
nameWithType.vb: Extensions.JsonCopy(Of TalkAction.TalkSettings.EvaluationResult)(TalkAction.TalkSettings.EvaluationResult)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult)(TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult)
name.vb: JsonCopy(Of EvaluationResult)(EvaluationResult)
name: JsonCopy<TalkAction.TalkSettings.EvaluationResult>()
nameWithType: Extensions.JsonCopy<TalkAction.TalkSettings.EvaluationResult>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult>()
nameWithType.vb: Extensions.JsonCopy(Of TalkAction.TalkSettings.EvaluationResult)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult)()
name.vb: JsonCopy(Of TalkAction.TalkSettings.EvaluationResult)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult
name: EvaluationResult
href: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult.html
- name: '>'
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<TalkAction.TalkSettings.EvaluationResult>
nameWithType: Extensions.JsonCopy<TalkAction.TalkSettings.EvaluationResult>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult>
- name: (
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult
name: EvaluationResult
href: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of TalkAction.TalkSettings.EvaluationResult)
nameWithType: Extensions.JsonCopy(Of TalkAction.TalkSettings.EvaluationResult)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult)
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult
name: EvaluationResult
href: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult.html
nameWithType: (
fullName: (
- name: )
- name: (
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult
name: EvaluationResult
href: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult.html
- name: )
- uid: TinyLife.Actions.ActionInfo
commentId: T:TinyLife.Actions.ActionInfo
nameWithType: )
fullName: )
- uid: TinyLife.Actions.Action
commentId: T:TinyLife.Actions.Action
parent: TinyLife.Actions
href: TinyLife.Actions.ActionInfo.html
name: ActionInfo
nameWithType: ActionInfo
fullName: TinyLife.Actions.ActionInfo
- uid: TinyLife.Objects.PersonLike
commentId: T:TinyLife.Objects.PersonLike
name: Action
nameWithType: Action
fullName: TinyLife.Actions.Action
- uid: TinyLife.Objects.Person
commentId: T:TinyLife.Objects.Person
parent: TinyLife.Objects
href: TinyLife.Objects.PersonLike.html
name: PersonLike
nameWithType: PersonLike
fullName: TinyLife.Objects.PersonLike
name: Person
nameWithType: Person
fullName: TinyLife.Objects.Person
- 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
name: Single
nameWithType: Single
fullName: System.Single
- 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)
@ -247,81 +131,51 @@ references:
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: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
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: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- 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.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: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- 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

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,40 @@
### YamlMime:ManagedReference
items:
- uid: TinyLife.Actions.Typeless
commentId: N:TinyLife.Actions.Typeless
id: TinyLife.Actions.Typeless
children:
- TinyLife.Actions.Typeless.DeferredAction
- TinyLife.Actions.Typeless.PathfindToPersonAction
- TinyLife.Actions.Typeless.TellPeopleToLeaveRoomAction
- TinyLife.Actions.Typeless.TryGoHereAction
langs:
- csharp
- vb
name: TinyLife.Actions.Typeless
nameWithType: TinyLife.Actions.Typeless
fullName: TinyLife.Actions.Typeless
type: Namespace
assemblies:
- Tiny Life
references:
- uid: TinyLife.Actions.Typeless.DeferredAction
commentId: T:TinyLife.Actions.Typeless.DeferredAction
name: DeferredAction
nameWithType: DeferredAction
fullName: TinyLife.Actions.Typeless.DeferredAction
- uid: TinyLife.Actions.Typeless.PathfindToPersonAction
commentId: T:TinyLife.Actions.Typeless.PathfindToPersonAction
name: PathfindToPersonAction
nameWithType: PathfindToPersonAction
fullName: TinyLife.Actions.Typeless.PathfindToPersonAction
- uid: TinyLife.Actions.Typeless.TellPeopleToLeaveRoomAction
commentId: T:TinyLife.Actions.Typeless.TellPeopleToLeaveRoomAction
name: TellPeopleToLeaveRoomAction
nameWithType: TellPeopleToLeaveRoomAction
fullName: TinyLife.Actions.Typeless.TellPeopleToLeaveRoomAction
- uid: TinyLife.Actions.Typeless.TryGoHereAction
commentId: T:TinyLife.Actions.Typeless.TryGoHereAction
name: TryGoHereAction
nameWithType: TryGoHereAction
fullName: TinyLife.Actions.Typeless.TryGoHereAction

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -21,21 +21,27 @@ items:
source:
remote:
path: TinyLife/Actions/WatchTvAction.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Channel
path: ../TinyLife/Actions/WatchTvAction.cs
startLine: 230
startLine: 220
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: An enumeration that represents channels that a tv can display in <xref href="TinyLife.Actions.WatchTvAction" data-throw-if-not-resolved="false"></xref>
summary: "\nAn enumeration that represents channels that a tv can display in <xref href=\"TinyLife.Actions.WatchTvAction\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
syntax:
content: public enum WatchTvAction.Channel
content.vb: Public Enum WatchTvAction.Channel
content: public enum Channel
content.vb: Public Enum Channel
extensionMethods:
- TinyLife.Actions.WatchTvAction.Channel.TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- enum
modifiers.vb:
- Public
- Enum
- uid: TinyLife.Actions.WatchTvAction.Channel.Comedy
commentId: F:TinyLife.Actions.WatchTvAction.Channel.Comedy
id: Comedy
@ -50,20 +56,26 @@ items:
source:
remote:
path: TinyLife/Actions/WatchTvAction.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Comedy
path: ../TinyLife/Actions/WatchTvAction.cs
startLine: 235
startLine: 225
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A comedy channel, which raises <xref href="TinyLife.NeedType.Entertainment" data-throw-if-not-resolved="false"></xref> faster than other channels
summary: "\nA comedy channel, which raises <xref href=\"TinyLife.NeedType.Entertainment\" data-throw-if-not-resolved=\"false\"></xref> faster than other channels\n"
example: []
syntax:
content: Comedy = 0
return:
type: TinyLife.Actions.WatchTvAction.Channel
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Actions.WatchTvAction.Channel.Cooking
commentId: F:TinyLife.Actions.WatchTvAction.Channel.Cooking
id: Cooking
@ -78,20 +90,26 @@ items:
source:
remote:
path: TinyLife/Actions/WatchTvAction.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Cooking
path: ../TinyLife/Actions/WatchTvAction.cs
startLine: 239
startLine: 229
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A cooking channel, which makes people feel <xref href="TinyLife.Emotions.EmotionType.Creative" data-throw-if-not-resolved="false"></xref> sometimes
summary: "\nA cooking channel, which makes people feel <xref href=\"TinyLife.Emotions.EmotionType.Creative\" data-throw-if-not-resolved=\"false\"></xref> sometimes\n"
example: []
syntax:
content: Cooking = 1
return:
type: TinyLife.Actions.WatchTvAction.Channel
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Actions.WatchTvAction.Channel.Romance
commentId: F:TinyLife.Actions.WatchTvAction.Channel.Romance
id: Romance
@ -106,20 +124,26 @@ items:
source:
remote:
path: TinyLife/Actions/WatchTvAction.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Romance
path: ../TinyLife/Actions/WatchTvAction.cs
startLine: 243
startLine: 233
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A romance channel, which makes people feel <xref href="TinyLife.Emotions.EmotionType.Frisky" data-throw-if-not-resolved="false"></xref> sometimes
summary: "\nA romance channel, which makes people feel <xref href=\"TinyLife.Emotions.EmotionType.Frisky\" data-throw-if-not-resolved=\"false\"></xref> sometimes\n"
example: []
syntax:
content: Romance = 2
return:
type: TinyLife.Actions.WatchTvAction.Channel
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Actions.WatchTvAction.Channel.Drama
commentId: F:TinyLife.Actions.WatchTvAction.Channel.Drama
id: Drama
@ -134,20 +158,26 @@ items:
source:
remote:
path: TinyLife/Actions/WatchTvAction.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Drama
path: ../TinyLife/Actions/WatchTvAction.cs
startLine: 247
startLine: 237
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A drama channel, which has no special abilities
summary: "\nA drama channel, which has no special abilities\n"
example: []
syntax:
content: Drama = 3
return:
type: TinyLife.Actions.WatchTvAction.Channel
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Actions.WatchTvAction.Channel.News
commentId: F:TinyLife.Actions.WatchTvAction.Channel.News
id: News
@ -162,20 +192,26 @@ items:
source:
remote:
path: TinyLife/Actions/WatchTvAction.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: News
path: ../TinyLife/Actions/WatchTvAction.cs
startLine: 251
startLine: 241
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A news channel, which can make people feel <xref href="TinyLife.Emotions.EmotionType.Sad" data-throw-if-not-resolved="false"></xref> or <xref href="TinyLife.Emotions.EmotionType.Happy" data-throw-if-not-resolved="false"></xref>
summary: "\nA news channel, which can make people feel <xref href=\"TinyLife.Emotions.EmotionType.Sad\" data-throw-if-not-resolved=\"false\"></xref> or <xref href=\"TinyLife.Emotions.EmotionType.Happy\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
syntax:
content: News = 4
return:
type: TinyLife.Actions.WatchTvAction.Channel
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Actions.WatchTvAction.Channel.Cartoons
commentId: F:TinyLife.Actions.WatchTvAction.Channel.Cartoons
id: Cartoons
@ -190,93 +226,71 @@ items:
source:
remote:
path: TinyLife/Actions/WatchTvAction.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Cartoons
path: ../TinyLife/Actions/WatchTvAction.cs
startLine: 255
startLine: 245
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: A cartoons channel, which is meant for children
summary: "\nA cartoons channel, which is meant for children\n"
example: []
syntax:
content: Cartoons = 5
return:
type: TinyLife.Actions.WatchTvAction.Channel
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
references:
- uid: TinyLife.Actions.WatchTvAction
commentId: T:TinyLife.Actions.WatchTvAction
href: TinyLife.Actions.WatchTvAction.html
name: WatchTvAction
nameWithType: WatchTvAction
fullName: TinyLife.Actions.WatchTvAction
- 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: TinyLife.Actions.WatchTvAction.Channel.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<Channel>(Channel)
nameWithType: Extensions.JsonCopy<WatchTvAction.Channel>(WatchTvAction.Channel)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.WatchTvAction.Channel>(TinyLife.Actions.WatchTvAction.Channel)
nameWithType.vb: Extensions.JsonCopy(Of WatchTvAction.Channel)(WatchTvAction.Channel)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.WatchTvAction.Channel)(TinyLife.Actions.WatchTvAction.Channel)
name.vb: JsonCopy(Of Channel)(Channel)
name: JsonCopy<WatchTvAction.Channel>()
nameWithType: Extensions.JsonCopy<WatchTvAction.Channel>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.WatchTvAction.Channel>()
nameWithType.vb: Extensions.JsonCopy(Of WatchTvAction.Channel)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.WatchTvAction.Channel)()
name.vb: JsonCopy(Of WatchTvAction.Channel)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.WatchTvAction.Channel)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Actions.WatchTvAction.Channel
name: Channel
href: TinyLife.Actions.WatchTvAction.Channel.html
- name: '>'
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<WatchTvAction.Channel>
nameWithType: Extensions.JsonCopy<WatchTvAction.Channel>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.WatchTvAction.Channel>
- name: (
- uid: TinyLife.Actions.WatchTvAction.Channel
name: Channel
href: TinyLife.Actions.WatchTvAction.Channel.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.WatchTvAction.Channel)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of WatchTvAction.Channel)
nameWithType: Extensions.JsonCopy(Of WatchTvAction.Channel)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.WatchTvAction.Channel)
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.WatchTvAction.Channel
name: Channel
href: TinyLife.Actions.WatchTvAction.Channel.html
- name: )
- name: (
- uid: TinyLife.Actions.WatchTvAction.Channel
name: Channel
href: TinyLife.Actions.WatchTvAction.Channel.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- 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)
@ -285,105 +299,61 @@ references:
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: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
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: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- 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: TinyLife.NeedType.Entertainment
commentId: F:TinyLife.NeedType.Entertainment
href: TinyLife.NeedType.html#TinyLife_NeedType_Entertainment
name: Entertainment
nameWithType: NeedType.Entertainment
fullName: TinyLife.NeedType.Entertainment
isExternal: true
- uid: TinyLife.Actions.WatchTvAction.Channel
commentId: T:TinyLife.Actions.WatchTvAction.Channel
parent: TinyLife.Actions
href: TinyLife.Actions.WatchTvAction.html
name: WatchTvAction.Channel
nameWithType: WatchTvAction.Channel
fullName: TinyLife.Actions.WatchTvAction.Channel
spec.csharp:
- uid: TinyLife.Actions.WatchTvAction
name: WatchTvAction
href: TinyLife.Actions.WatchTvAction.html
- name: .
- uid: TinyLife.Actions.WatchTvAction.Channel
name: Channel
href: TinyLife.Actions.WatchTvAction.Channel.html
spec.vb:
- uid: TinyLife.Actions.WatchTvAction
name: WatchTvAction
href: TinyLife.Actions.WatchTvAction.html
- name: .
- uid: TinyLife.Actions.WatchTvAction.Channel
name: Channel
href: TinyLife.Actions.WatchTvAction.Channel.html
- uid: TinyLife.Emotions.EmotionType.Creative
commentId: F:TinyLife.Emotions.EmotionType.Creative
href: TinyLife.Emotions.EmotionType.html#TinyLife_Emotions_EmotionType_Creative
name: Creative
nameWithType: EmotionType.Creative
fullName: TinyLife.Emotions.EmotionType.Creative
isExternal: true
- uid: TinyLife.Emotions.EmotionType.Frisky
commentId: F:TinyLife.Emotions.EmotionType.Frisky
href: TinyLife.Emotions.EmotionType.html#TinyLife_Emotions_EmotionType_Frisky
name: Frisky
nameWithType: EmotionType.Frisky
fullName: TinyLife.Emotions.EmotionType.Frisky
isExternal: true
- 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
isExternal: true
- uid: TinyLife.Emotions.EmotionType.Happy
commentId: F:TinyLife.Emotions.EmotionType.Happy
href: TinyLife.Emotions.EmotionType.html#TinyLife_Emotions_EmotionType_Happy
name: Happy
nameWithType: EmotionType.Happy
fullName: TinyLife.Emotions.EmotionType.Happy
isExternal: true

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -4,43 +4,28 @@ items:
commentId: N:TinyLife.Actions
id: TinyLife.Actions
children:
- TinyLife.Actions.
- TinyLife.Actions.Action
- TinyLife.Actions.Action.ActionTypeConstructedDelegate
- TinyLife.Actions.ActionArgument
- TinyLife.Actions.ActionInfo
- TinyLife.Actions.ActionType
- TinyLife.Actions.ActionType.AiSettings
- TinyLife.Actions.ActionType.CanExecuteDelegate
- TinyLife.Actions.ActionType.TypeSettings
- TinyLife.Actions.ActionVariety
- TinyLife.Actions.BehaviorAction
- TinyLife.Actions.BehaviorAction`1
- TinyLife.Actions.CanExecuteResult
- TinyLife.Actions.CanExecuteResult.ResultType
- TinyLife.Actions.ChoicePromptInfo
- TinyLife.Actions.ChoicePromptInfo.Option
- TinyLife.Actions.CleanEverythingAction
- TinyLife.Actions.CompletionType
- TinyLife.Actions.DebugAction
- TinyLife.Actions.DeferredAction
- TinyLife.Actions.DieAction
- TinyLife.Actions.DiscardHeldItemAction
- TinyLife.Actions.DriveAction
- TinyLife.Actions.Emote
- TinyLife.Actions.EmoteCategory
- TinyLife.Actions.EmoteChoices
- TinyLife.Actions.GoHereAction
- TinyLife.Actions.HelpAction
- TinyLife.Actions.HoldingPersonAction
- TinyLife.Actions.MultiAction
- TinyLife.Actions.MultiAction.Stage
- TinyLife.Actions.OrderFromStaffAction
- TinyLife.Actions.OutOfTownAction
- TinyLife.Actions.PathfindAction
- TinyLife.Actions.PathfindToPersonAction
- TinyLife.Actions.PutAwayAction
- TinyLife.Actions.ResultType
- TinyLife.Actions.SellAction
- TinyLife.Actions.SimpleBehaviorAction
- TinyLife.Actions.SimpleBehaviorAction.ActionSettings
- TinyLife.Actions.SitAction
- TinyLife.Actions.SocialAction
- TinyLife.Actions.SocialAction.StartPartnerAction
@ -48,9 +33,9 @@ items:
- TinyLife.Actions.TalkAction
- TinyLife.Actions.TalkAction.TalkSettings
- TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult
- TinyLife.Actions.TellPeopleToLeaveRoomAction
- TinyLife.Actions.TryGoHereAction
- TinyLife.Actions.WalkAction
- TinyLife.Actions.WatchTvAction
- TinyLife.Actions.WatchTvAction.Channel
- TinyLife.Actions.WorkAction
langs:
- csharp
@ -65,132 +50,53 @@ 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.Action.ActionTypeConstructedDelegate
commentId: T:TinyLife.Actions.Action.ActionTypeConstructedDelegate
parent: TinyLife.Actions
href: TinyLife.Actions.Action.html
name: Action.ActionTypeConstructedDelegate
nameWithType: Action.ActionTypeConstructedDelegate
fullName: TinyLife.Actions.Action.ActionTypeConstructedDelegate
spec.csharp:
- uid: TinyLife.Actions.Action
name: Action
href: TinyLife.Actions.Action.html
- name: .
- uid: TinyLife.Actions.Action.ActionTypeConstructedDelegate
name: ActionTypeConstructedDelegate
href: TinyLife.Actions.Action.ActionTypeConstructedDelegate.html
spec.vb:
- uid: TinyLife.Actions.Action
name: Action
href: TinyLife.Actions.Action.html
- name: .
- uid: TinyLife.Actions.Action.ActionTypeConstructedDelegate
name: ActionTypeConstructedDelegate
href: TinyLife.Actions.Action.ActionTypeConstructedDelegate.html
- 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.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.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.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.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.Actions.ActionType.AiSettings
commentId: T:TinyLife.Actions.ActionType.AiSettings
parent: TinyLife.Actions
href: TinyLife.Actions.ActionType.html
name: ActionType.AiSettings
nameWithType: ActionType.AiSettings
fullName: TinyLife.Actions.ActionType.AiSettings
spec.csharp:
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: .
- uid: TinyLife.Actions.ActionType.AiSettings
name: AiSettings
href: TinyLife.Actions.ActionType.AiSettings.html
spec.vb:
- uid: TinyLife.Actions.ActionType
name: ActionType
href: TinyLife.Actions.ActionType.html
- name: .
- uid: TinyLife.Actions.ActionType.AiSettings
name: AiSettings
href: TinyLife.Actions.ActionType.AiSettings.html
- uid: TinyLife.Actions.ActionVariety
commentId: T:TinyLife.Actions.ActionVariety
parent: TinyLife.Actions
name: ActionVariety
nameWithType: ActionVariety
fullName: TinyLife.Actions.ActionVariety
- uid: TinyLife.Actions.BehaviorAction
commentId: T:TinyLife.Actions.BehaviorAction
parent: TinyLife.Actions
href: TinyLife.Actions.BehaviorAction.html
name: BehaviorAction
nameWithType: BehaviorAction
fullName: TinyLife.Actions.BehaviorAction
- uid: TinyLife.Actions.BehaviorAction`1
commentId: T:TinyLife.Actions.BehaviorAction`1
href: TinyLife.Actions.BehaviorAction-1.html
name: BehaviorAction<T>
nameWithType: BehaviorAction<T>
fullName: TinyLife.Actions.BehaviorAction<T>
@ -200,402 +106,165 @@ references:
spec.csharp:
- uid: TinyLife.Actions.BehaviorAction`1
name: BehaviorAction
href: TinyLife.Actions.BehaviorAction-1.html
nameWithType: BehaviorAction
fullName: TinyLife.Actions.BehaviorAction
- name: <
nameWithType: <
fullName: <
- name: T
nameWithType: T
fullName: T
- name: '>'
nameWithType: '>'
fullName: '>'
spec.vb:
- uid: TinyLife.Actions.BehaviorAction`1
name: BehaviorAction
href: TinyLife.Actions.BehaviorAction-1.html
- name: (
- name: Of
- name: " "
nameWithType: BehaviorAction
fullName: TinyLife.Actions.BehaviorAction
- name: '(Of '
nameWithType: '(Of '
fullName: '(Of '
- name: T
nameWithType: T
fullName: T
- name: )
- uid: TinyLife.Actions.CanExecuteResult
commentId: T:TinyLife.Actions.CanExecuteResult
nameWithType: )
fullName: )
- uid: TinyLife.Actions.
commentId: T:TinyLife.Actions.
name: ''
nameWithType: ''
fullName: TinyLife.Actions.
- uid: TinyLife.Actions.ResultType
commentId: T:TinyLife.Actions.ResultType
parent: TinyLife.Actions
href: TinyLife.Actions.CanExecuteResult.html
name: CanExecuteResult
nameWithType: CanExecuteResult
fullName: TinyLife.Actions.CanExecuteResult
- uid: TinyLife.Actions.CanExecuteResult.ResultType
commentId: T:TinyLife.Actions.CanExecuteResult.ResultType
parent: TinyLife.Actions
href: TinyLife.Actions.CanExecuteResult.html
name: CanExecuteResult.ResultType
nameWithType: CanExecuteResult.ResultType
fullName: TinyLife.Actions.CanExecuteResult.ResultType
spec.csharp:
- uid: TinyLife.Actions.CanExecuteResult
name: CanExecuteResult
href: TinyLife.Actions.CanExecuteResult.html
- name: .
- uid: TinyLife.Actions.CanExecuteResult.ResultType
name: ResultType
href: TinyLife.Actions.CanExecuteResult.ResultType.html
spec.vb:
- uid: TinyLife.Actions.CanExecuteResult
name: CanExecuteResult
href: TinyLife.Actions.CanExecuteResult.html
- name: .
- uid: TinyLife.Actions.CanExecuteResult.ResultType
name: ResultType
href: TinyLife.Actions.CanExecuteResult.ResultType.html
- uid: TinyLife.Actions.ChoicePromptInfo
commentId: T:TinyLife.Actions.ChoicePromptInfo
parent: TinyLife.Actions
href: TinyLife.Actions.ChoicePromptInfo.html
name: ChoicePromptInfo
nameWithType: ChoicePromptInfo
fullName: TinyLife.Actions.ChoicePromptInfo
- 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.CleanEverythingAction
commentId: T:TinyLife.Actions.CleanEverythingAction
href: TinyLife.Actions.CleanEverythingAction.html
name: CleanEverythingAction
nameWithType: CleanEverythingAction
fullName: TinyLife.Actions.CleanEverythingAction
name: ResultType
nameWithType: ResultType
fullName: TinyLife.Actions.ResultType
- uid: TinyLife.Actions.CompletionType
commentId: T:TinyLife.Actions.CompletionType
parent: TinyLife.Actions
href: TinyLife.Actions.CompletionType.html
name: CompletionType
nameWithType: CompletionType
fullName: TinyLife.Actions.CompletionType
- uid: TinyLife.Actions.DebugAction
commentId: T:TinyLife.Actions.DebugAction
href: TinyLife.Actions.DebugAction.html
name: DebugAction
nameWithType: DebugAction
fullName: TinyLife.Actions.DebugAction
- uid: TinyLife.Actions.DeferredAction
commentId: T:TinyLife.Actions.DeferredAction
href: TinyLife.Actions.DeferredAction.html
name: DeferredAction
nameWithType: DeferredAction
fullName: TinyLife.Actions.DeferredAction
- uid: TinyLife.Actions.DieAction
commentId: T:TinyLife.Actions.DieAction
href: TinyLife.Actions.DieAction.html
name: DieAction
nameWithType: DieAction
fullName: TinyLife.Actions.DieAction
- uid: TinyLife.Actions.DiscardHeldItemAction
commentId: T:TinyLife.Actions.DiscardHeldItemAction
href: TinyLife.Actions.DiscardHeldItemAction.html
name: DiscardHeldItemAction
nameWithType: DiscardHeldItemAction
fullName: TinyLife.Actions.DiscardHeldItemAction
- uid: TinyLife.Actions.DriveAction
commentId: T:TinyLife.Actions.DriveAction
href: TinyLife.Actions.DriveAction.html
name: DriveAction
nameWithType: DriveAction
fullName: TinyLife.Actions.DriveAction
- uid: TinyLife.Actions.Emote
commentId: T:TinyLife.Actions.Emote
parent: TinyLife.Actions
href: TinyLife.Actions.Emote.html
name: Emote
nameWithType: Emote
fullName: TinyLife.Actions.Emote
- uid: TinyLife.Actions.EmoteChoices
commentId: T:TinyLife.Actions.EmoteChoices
parent: TinyLife.Actions
href: TinyLife.Actions.EmoteChoices.html
name: EmoteChoices
nameWithType: EmoteChoices
fullName: TinyLife.Actions.EmoteChoices
- uid: TinyLife.Actions.EmoteCategory
commentId: T:TinyLife.Actions.EmoteCategory
parent: TinyLife.Actions
href: TinyLife.Actions.EmoteCategory.html
name: EmoteCategory
nameWithType: EmoteCategory
fullName: TinyLife.Actions.EmoteCategory
- uid: TinyLife.Actions.GoHereAction
commentId: T:TinyLife.Actions.GoHereAction
href: TinyLife.Actions.GoHereAction.html
name: GoHereAction
nameWithType: GoHereAction
fullName: TinyLife.Actions.GoHereAction
- uid: TinyLife.Actions.HelpAction
commentId: T:TinyLife.Actions.HelpAction
href: TinyLife.Actions.HelpAction.html
name: HelpAction
nameWithType: HelpAction
fullName: TinyLife.Actions.HelpAction
- uid: TinyLife.Actions.HoldingPersonAction
commentId: T:TinyLife.Actions.HoldingPersonAction
href: TinyLife.Actions.HoldingPersonAction.html
name: HoldingPersonAction
nameWithType: HoldingPersonAction
fullName: TinyLife.Actions.HoldingPersonAction
- 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.MultiAction.Stage
commentId: T:TinyLife.Actions.MultiAction.Stage
parent: TinyLife.Actions
href: TinyLife.Actions.MultiAction.html
name: MultiAction.Stage
nameWithType: MultiAction.Stage
fullName: TinyLife.Actions.MultiAction.Stage
spec.csharp:
- uid: TinyLife.Actions.MultiAction
name: MultiAction
href: TinyLife.Actions.MultiAction.html
- name: .
- uid: TinyLife.Actions.MultiAction.Stage
name: Stage
href: TinyLife.Actions.MultiAction.Stage.html
spec.vb:
- uid: TinyLife.Actions.MultiAction
name: MultiAction
href: TinyLife.Actions.MultiAction.html
- name: .
- uid: TinyLife.Actions.MultiAction.Stage
name: Stage
href: TinyLife.Actions.MultiAction.Stage.html
- uid: TinyLife.Actions.OrderFromStaffAction
commentId: T:TinyLife.Actions.OrderFromStaffAction
href: TinyLife.Actions.OrderFromStaffAction.html
name: OrderFromStaffAction
nameWithType: OrderFromStaffAction
fullName: TinyLife.Actions.OrderFromStaffAction
- uid: TinyLife.Actions.OutOfTownAction
commentId: T:TinyLife.Actions.OutOfTownAction
parent: TinyLife.Actions
href: TinyLife.Actions.OutOfTownAction.html
name: OutOfTownAction
nameWithType: OutOfTownAction
fullName: TinyLife.Actions.OutOfTownAction
- uid: TinyLife.Actions.PathfindAction
commentId: T:TinyLife.Actions.PathfindAction
parent: TinyLife.Actions
href: TinyLife.Actions.PathfindAction.html
name: PathfindAction
nameWithType: PathfindAction
fullName: TinyLife.Actions.PathfindAction
- uid: TinyLife.Actions.PathfindToPersonAction
commentId: T:TinyLife.Actions.PathfindToPersonAction
href: TinyLife.Actions.PathfindToPersonAction.html
name: PathfindToPersonAction
nameWithType: PathfindToPersonAction
fullName: TinyLife.Actions.PathfindToPersonAction
- uid: TinyLife.Actions.PutAwayAction
commentId: T:TinyLife.Actions.PutAwayAction
href: TinyLife.Actions.PutAwayAction.html
name: PutAwayAction
nameWithType: PutAwayAction
fullName: TinyLife.Actions.PutAwayAction
- uid: TinyLife.Actions.SellAction
commentId: T:TinyLife.Actions.SellAction
href: TinyLife.Actions.SellAction.html
name: SellAction
nameWithType: SellAction
fullName: TinyLife.Actions.SellAction
- uid: TinyLife.Actions.SimpleBehaviorAction
commentId: T:TinyLife.Actions.SimpleBehaviorAction
href: TinyLife.Actions.SimpleBehaviorAction.html
name: SimpleBehaviorAction
nameWithType: SimpleBehaviorAction
fullName: TinyLife.Actions.SimpleBehaviorAction
- uid: TinyLife.Actions.SimpleBehaviorAction.ActionSettings
commentId: T:TinyLife.Actions.SimpleBehaviorAction.ActionSettings
parent: TinyLife.Actions
href: TinyLife.Actions.SimpleBehaviorAction.html
name: SimpleBehaviorAction.ActionSettings
nameWithType: SimpleBehaviorAction.ActionSettings
fullName: TinyLife.Actions.SimpleBehaviorAction.ActionSettings
spec.csharp:
- uid: TinyLife.Actions.SimpleBehaviorAction
name: SimpleBehaviorAction
href: TinyLife.Actions.SimpleBehaviorAction.html
- name: .
- uid: TinyLife.Actions.SimpleBehaviorAction.ActionSettings
name: ActionSettings
href: TinyLife.Actions.SimpleBehaviorAction.ActionSettings.html
spec.vb:
- uid: TinyLife.Actions.SimpleBehaviorAction
name: SimpleBehaviorAction
href: TinyLife.Actions.SimpleBehaviorAction.html
- name: .
- uid: TinyLife.Actions.SimpleBehaviorAction.ActionSettings
name: ActionSettings
href: TinyLife.Actions.SimpleBehaviorAction.ActionSettings.html
- uid: TinyLife.Actions.SitAction
commentId: T:TinyLife.Actions.SitAction
href: TinyLife.Actions.SitAction.html
name: SitAction
nameWithType: SitAction
fullName: TinyLife.Actions.SitAction
- 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.SocialAction.StartPartnerAction
commentId: T:TinyLife.Actions.SocialAction.StartPartnerAction
href: TinyLife.Actions.SocialAction.html
name: SocialAction.StartPartnerAction
nameWithType: SocialAction.StartPartnerAction
fullName: TinyLife.Actions.SocialAction.StartPartnerAction
spec.csharp:
- uid: TinyLife.Actions.SocialAction
name: SocialAction
href: TinyLife.Actions.SocialAction.html
- name: .
- uid: TinyLife.Actions.SocialAction.StartPartnerAction
name: StartPartnerAction
href: TinyLife.Actions.SocialAction.StartPartnerAction.html
spec.vb:
- uid: TinyLife.Actions.SocialAction
name: SocialAction
href: TinyLife.Actions.SocialAction.html
- name: .
- uid: TinyLife.Actions.SocialAction.StartPartnerAction
name: StartPartnerAction
href: TinyLife.Actions.SocialAction.StartPartnerAction.html
- uid: TinyLife.Actions.StoreAction
commentId: T:TinyLife.Actions.StoreAction
href: TinyLife.Actions.StoreAction.html
name: StoreAction
nameWithType: StoreAction
fullName: TinyLife.Actions.StoreAction
- 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.TalkAction.TalkSettings
commentId: T:TinyLife.Actions.TalkAction.TalkSettings
parent: TinyLife.Actions
href: TinyLife.Actions.TalkAction.html
name: TalkAction.TalkSettings
nameWithType: TalkAction.TalkSettings
fullName: TinyLife.Actions.TalkAction.TalkSettings
spec.csharp:
- uid: TinyLife.Actions.TalkAction
name: TalkAction
href: TinyLife.Actions.TalkAction.html
- name: .
- uid: TinyLife.Actions.TalkAction.TalkSettings
name: TalkSettings
href: TinyLife.Actions.TalkAction.TalkSettings.html
spec.vb:
- uid: TinyLife.Actions.TalkAction
name: TalkAction
href: TinyLife.Actions.TalkAction.html
- name: .
- uid: TinyLife.Actions.TalkAction.TalkSettings
name: TalkSettings
href: TinyLife.Actions.TalkAction.TalkSettings.html
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult
commentId: T:TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult
parent: TinyLife.Actions
href: TinyLife.Actions.TalkAction.html
name: TalkAction.TalkSettings.EvaluationResult
nameWithType: TalkAction.TalkSettings.EvaluationResult
fullName: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult
spec.csharp:
- uid: TinyLife.Actions.TalkAction
name: TalkAction
href: TinyLife.Actions.TalkAction.html
- name: .
- uid: TinyLife.Actions.TalkAction.TalkSettings
name: TalkSettings
href: TinyLife.Actions.TalkAction.TalkSettings.html
- name: .
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult
name: EvaluationResult
href: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult.html
spec.vb:
- uid: TinyLife.Actions.TalkAction
name: TalkAction
href: TinyLife.Actions.TalkAction.html
- name: .
- uid: TinyLife.Actions.TalkAction.TalkSettings
name: TalkSettings
href: TinyLife.Actions.TalkAction.TalkSettings.html
- name: .
- uid: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult
name: EvaluationResult
href: TinyLife.Actions.TalkAction.TalkSettings.EvaluationResult.html
- uid: TinyLife.Actions.TellPeopleToLeaveRoomAction
commentId: T:TinyLife.Actions.TellPeopleToLeaveRoomAction
href: TinyLife.Actions.TellPeopleToLeaveRoomAction.html
name: TellPeopleToLeaveRoomAction
nameWithType: TellPeopleToLeaveRoomAction
fullName: TinyLife.Actions.TellPeopleToLeaveRoomAction
- uid: TinyLife.Actions.TryGoHereAction
commentId: T:TinyLife.Actions.TryGoHereAction
href: TinyLife.Actions.TryGoHereAction.html
name: TryGoHereAction
nameWithType: TryGoHereAction
fullName: TinyLife.Actions.TryGoHereAction
- uid: TinyLife.Actions.MultiAction
commentId: T:TinyLife.Actions.MultiAction
parent: TinyLife.Actions
name: MultiAction
nameWithType: MultiAction
fullName: TinyLife.Actions.MultiAction
- uid: TinyLife.Actions.WalkAction
commentId: T:TinyLife.Actions.WalkAction
href: TinyLife.Actions.WalkAction.html
name: WalkAction
nameWithType: WalkAction
fullName: TinyLife.Actions.WalkAction
- uid: TinyLife.Actions.WatchTvAction
commentId: T:TinyLife.Actions.WatchTvAction
name: WatchTvAction
nameWithType: WatchTvAction
fullName: TinyLife.Actions.WatchTvAction
- uid: TinyLife.Actions.WatchTvAction.Channel
commentId: T:TinyLife.Actions.WatchTvAction.Channel
parent: TinyLife.Actions
name: WatchTvAction.Channel
nameWithType: WatchTvAction.Channel
fullName: TinyLife.Actions.WatchTvAction.Channel
- uid: TinyLife.Actions.WorkAction
commentId: T:TinyLife.Actions.WorkAction
parent: TinyLife.Actions
href: TinyLife.Actions.WorkAction.html
name: WorkAction
nameWithType: WorkAction
fullName: TinyLife.Actions.WorkAction
- 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

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,798 @@
### YamlMime:ManagedReference
items:
- uid: TinyLife.ChoicePromptInfo
commentId: T:TinyLife.ChoicePromptInfo
id: ChoicePromptInfo
parent: TinyLife
children:
- TinyLife.ChoicePromptInfo.#ctor(System.String,TinyLife.ChoicePromptInfo.Option[])
- TinyLife.ChoicePromptInfo.CreatePromptContent(TinyLife.Objects.Person,TinyLife.Uis.CoveringGroup)
- TinyLife.ChoicePromptInfo.Name
- TinyLife.ChoicePromptInfo.Options
langs:
- csharp
- vb
name: ChoicePromptInfo
nameWithType: ChoicePromptInfo
fullName: TinyLife.ChoicePromptInfo
type: Class
source:
remote:
path: TinyLife/Actions/ChoicePromptInfo.cs
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ChoicePromptInfo
path: ../TinyLife/Actions/ChoicePromptInfo.cs
startLine: 16
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nA choice prompt info is a set of data that can be used in <xref href=\"TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.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 &quot;correct&quot;, 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.\n"
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.ChoicePromptInfo.TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- class
modifiers.vb:
- Public
- Class
- uid: TinyLife.ChoicePromptInfo.Name
commentId: F:TinyLife.ChoicePromptInfo.Name
id: Name
parent: TinyLife.ChoicePromptInfo
langs:
- csharp
- vb
name: Name
nameWithType: ChoicePromptInfo.Name
fullName: TinyLife.ChoicePromptInfo.Name
type: Field
source:
remote:
path: TinyLife/Actions/ChoicePromptInfo.cs
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Name
path: ../TinyLife/Actions/ChoicePromptInfo.cs
startLine: 23
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nThis choice prompt&apos;s name, which will be localized.\n"
example: []
syntax:
content: public readonly string Name
return:
type: System.String
content.vb: Public ReadOnly Name As String
modifiers.csharp:
- public
- readonly
modifiers.vb:
- Public
- ReadOnly
- uid: TinyLife.ChoicePromptInfo.Options
commentId: F:TinyLife.ChoicePromptInfo.Options
id: Options
parent: TinyLife.ChoicePromptInfo
langs:
- csharp
- vb
name: Options
nameWithType: ChoicePromptInfo.Options
fullName: TinyLife.ChoicePromptInfo.Options
type: Field
source:
remote:
path: TinyLife/Actions/ChoicePromptInfo.cs
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Options
path: ../TinyLife/Actions/ChoicePromptInfo.cs
startLine: 27
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nThis choice prompt&apos;s set of <xref href=\"TinyLife.ChoicePromptInfo.Option\" data-throw-if-not-resolved=\"false\"></xref> instances, one of which will randomly be chosen as the correct option.\n"
example: []
syntax:
content: public readonly ChoicePromptInfo.Option[] Options
return:
type: TinyLife.ChoicePromptInfo.Option[]
content.vb: Public ReadOnly Options As ChoicePromptInfo.Option()
modifiers.csharp:
- public
- readonly
modifiers.vb:
- Public
- ReadOnly
- uid: TinyLife.ChoicePromptInfo.#ctor(System.String,TinyLife.ChoicePromptInfo.Option[])
commentId: M:TinyLife.ChoicePromptInfo.#ctor(System.String,TinyLife.ChoicePromptInfo.Option[])
id: '#ctor(System.String,TinyLife.ChoicePromptInfo.Option[])'
parent: TinyLife.ChoicePromptInfo
langs:
- csharp
- vb
name: ChoicePromptInfo(String, ChoicePromptInfo.Option[])
nameWithType: ChoicePromptInfo.ChoicePromptInfo(String, ChoicePromptInfo.Option[])
fullName: TinyLife.ChoicePromptInfo.ChoicePromptInfo(System.String, TinyLife.ChoicePromptInfo.Option[])
type: Constructor
source:
remote:
path: TinyLife/Actions/ChoicePromptInfo.cs
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/Actions/ChoicePromptInfo.cs
startLine: 34
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nCreates a new choice prompt info with the given settings.\n"
example: []
syntax:
content: public ChoicePromptInfo(string name, params ChoicePromptInfo.Option[] options)
parameters:
- id: name
type: System.String
description: This choice prompt&apos;s name, which will be localized.
- id: options
type: TinyLife.ChoicePromptInfo.Option[]
description: This choice prompt&apos;s set of <xref href="TinyLife.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.ChoicePromptInfo.#ctor*
nameWithType.vb: ChoicePromptInfo.ChoicePromptInfo(String, ChoicePromptInfo.Option())
modifiers.csharp:
- public
modifiers.vb:
- Public
fullName.vb: TinyLife.ChoicePromptInfo.ChoicePromptInfo(System.String, TinyLife.ChoicePromptInfo.Option())
name.vb: ChoicePromptInfo(String, ChoicePromptInfo.Option())
- uid: TinyLife.ChoicePromptInfo.CreatePromptContent(TinyLife.Objects.Person,TinyLife.Uis.CoveringGroup)
commentId: M:TinyLife.ChoicePromptInfo.CreatePromptContent(TinyLife.Objects.Person,TinyLife.Uis.CoveringGroup)
id: CreatePromptContent(TinyLife.Objects.Person,TinyLife.Uis.CoveringGroup)
parent: TinyLife.ChoicePromptInfo
langs:
- csharp
- vb
name: CreatePromptContent(Person, CoveringGroup)
nameWithType: ChoicePromptInfo.CreatePromptContent(Person, CoveringGroup)
fullName: TinyLife.ChoicePromptInfo.CreatePromptContent(TinyLife.Objects.Person, TinyLife.Uis.CoveringGroup)
type: Method
source:
remote:
path: TinyLife/Actions/ChoicePromptInfo.cs
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CreatePromptContent
path: ../TinyLife/Actions/ChoicePromptInfo.cs
startLine: 45
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nCreates the UI content for this choice prompt. This method is mainly used by <xref href=\"TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.ChoicePromptInfo)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
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.ChoicePromptInfo.CreatePromptContent*
modifiers.csharp:
- public
modifiers.vb:
- Public
references:
- uid: TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.ChoicePromptInfo)
commentId: M:TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.ChoicePromptInfo)
parent: TinyLife.Actions.Action
name: OpenChoicePrompt(ChoicePromptInfo)
nameWithType: Action.OpenChoicePrompt(ChoicePromptInfo)
fullName: TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.ChoicePromptInfo)
spec.csharp:
- uid: TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.ChoicePromptInfo)
name: OpenChoicePrompt
nameWithType: Action.OpenChoicePrompt
fullName: TinyLife.Actions.Action.OpenChoicePrompt
- name: (
nameWithType: (
fullName: (
- uid: TinyLife.ChoicePromptInfo
name: ChoicePromptInfo
nameWithType: ChoicePromptInfo
fullName: TinyLife.ChoicePromptInfo
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Actions.Action.OpenChoicePrompt(TinyLife.ChoicePromptInfo)
name: OpenChoicePrompt
nameWithType: Action.OpenChoicePrompt
fullName: TinyLife.Actions.Action.OpenChoicePrompt
- name: (
nameWithType: (
fullName: (
- uid: TinyLife.ChoicePromptInfo
name: ChoicePromptInfo
nameWithType: ChoicePromptInfo
fullName: TinyLife.ChoicePromptInfo
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Goals.JobType
commentId: T:TinyLife.Goals.JobType
parent: TinyLife.Goals
name: JobType
nameWithType: JobType
fullName: TinyLife.Goals.JobType
- uid: TinyLife
commentId: N:TinyLife
name: TinyLife
nameWithType: TinyLife
fullName: TinyLife
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
name: Object
nameWithType: Object
fullName: System.Object
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
name: Equals(Object)
nameWithType: Object.Equals(Object)
fullName: System.Object.Equals(System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
name: Equals(Object, Object)
nameWithType: Object.Equals(Object, Object)
fullName: System.Object.Equals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
name: GetHashCode()
nameWithType: Object.GetHashCode()
fullName: System.Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
name: GetType()
nameWithType: Object.GetType()
fullName: System.Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
name: MemberwiseClone()
nameWithType: Object.MemberwiseClone()
fullName: System.Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
name: ReferenceEquals(Object, Object)
nameWithType: Object.ReferenceEquals(Object, Object)
fullName: System.Object.ReferenceEquals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
name: ToString()
nameWithType: Object.ToString()
fullName: System.Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.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)
name: JsonCopy<ChoicePromptInfo>()
nameWithType: Extensions.JsonCopy<ChoicePromptInfo>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.ChoicePromptInfo>()
nameWithType.vb: Extensions.JsonCopy(Of ChoicePromptInfo)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.ChoicePromptInfo)()
name.vb: JsonCopy(Of ChoicePromptInfo)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<ChoicePromptInfo>
nameWithType: Extensions.JsonCopy<ChoicePromptInfo>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.ChoicePromptInfo>
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of ChoicePromptInfo)
nameWithType: Extensions.JsonCopy(Of ChoicePromptInfo)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.ChoicePromptInfo)
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Actions.Action
commentId: T:TinyLife.Actions.Action
parent: TinyLife.Actions
name: Action
nameWithType: Action
fullName: TinyLife.Actions.Action
- uid: TinyLife.Goals
commentId: N:TinyLife.Goals
name: TinyLife.Goals
nameWithType: TinyLife.Goals
fullName: TinyLife.Goals
- uid: System
commentId: N:System
isExternal: true
name: System
nameWithType: System
fullName: System
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy<T>(T)
nameWithType: Extensions.JsonCopy<T>(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb: JsonCopy(Of T)(T)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Actions
commentId: N:TinyLife.Actions
name: TinyLife.Actions
nameWithType: TinyLife.Actions
fullName: TinyLife.Actions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
name: String
nameWithType: String
fullName: System.String
- uid: TinyLife.ChoicePromptInfo.Option
commentId: T:TinyLife.ChoicePromptInfo.Option
name: ChoicePromptInfo.Option
nameWithType: ChoicePromptInfo.Option
fullName: TinyLife.ChoicePromptInfo.Option
- uid: TinyLife.ChoicePromptInfo.Option[]
isExternal: true
name: ChoicePromptInfo.Option[]
nameWithType: ChoicePromptInfo.Option[]
fullName: TinyLife.ChoicePromptInfo.Option[]
nameWithType.vb: ChoicePromptInfo.Option()
fullName.vb: TinyLife.ChoicePromptInfo.Option()
name.vb: ChoicePromptInfo.Option()
spec.csharp:
- uid: TinyLife.ChoicePromptInfo.Option
name: ChoicePromptInfo.Option
nameWithType: ChoicePromptInfo.Option
fullName: TinyLife.ChoicePromptInfo.Option
- name: '[]'
nameWithType: '[]'
fullName: '[]'
spec.vb:
- uid: TinyLife.ChoicePromptInfo.Option
name: ChoicePromptInfo.Option
nameWithType: ChoicePromptInfo.Option
fullName: TinyLife.ChoicePromptInfo.Option
- name: ()
nameWithType: ()
fullName: ()
- uid: TinyLife.ChoicePromptInfo.#ctor*
commentId: Overload:TinyLife.ChoicePromptInfo.#ctor
name: ChoicePromptInfo
nameWithType: ChoicePromptInfo.ChoicePromptInfo
fullName: TinyLife.ChoicePromptInfo.ChoicePromptInfo
- uid: TinyLife.ChoicePromptInfo.CreatePromptContent*
commentId: Overload:TinyLife.ChoicePromptInfo.CreatePromptContent
name: CreatePromptContent
nameWithType: ChoicePromptInfo.CreatePromptContent
fullName: TinyLife.ChoicePromptInfo.CreatePromptContent
- uid: TinyLife.Objects.Person
commentId: T:TinyLife.Objects.Person
parent: TinyLife.Objects
name: Person
nameWithType: Person
fullName: TinyLife.Objects.Person
- uid: TinyLife.Uis.CoveringGroup
commentId: T:TinyLife.Uis.CoveringGroup
parent: TinyLife.Uis
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
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
nameWithType: IEnumerable
fullName: System.Collections.Generic.IEnumerable
isExternal: true
- name: <
nameWithType: <
fullName: <
- uid: MLEM.Ui.Elements.Element
name: Element
nameWithType: Element
fullName: MLEM.Ui.Elements.Element
isExternal: true
- name: '>'
nameWithType: '>'
fullName: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
nameWithType: IEnumerable
fullName: System.Collections.Generic.IEnumerable
isExternal: true
- name: '(Of '
nameWithType: '(Of '
fullName: '(Of '
- uid: MLEM.Ui.Elements.Element
name: Element
nameWithType: Element
fullName: MLEM.Ui.Elements.Element
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Objects
commentId: N:TinyLife.Objects
name: TinyLife.Objects
nameWithType: TinyLife.Objects
fullName: TinyLife.Objects
- uid: TinyLife.Uis
commentId: N:TinyLife.Uis
name: TinyLife.Uis
nameWithType: TinyLife.Uis
fullName: TinyLife.Uis
- uid: System.Collections.Generic.IEnumerable`1
commentId: T:System.Collections.Generic.IEnumerable`1
isExternal: true
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
nameWithType: IEnumerable
fullName: System.Collections.Generic.IEnumerable
isExternal: true
- name: <
nameWithType: <
fullName: <
- name: T
nameWithType: T
fullName: T
- name: '>'
nameWithType: '>'
fullName: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
nameWithType: IEnumerable
fullName: System.Collections.Generic.IEnumerable
isExternal: true
- name: '(Of '
nameWithType: '(Of '
fullName: '(Of '
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic

File diff suppressed because it is too large Load diff

View file

@ -15,38 +15,40 @@ items:
source:
remote:
path: TinyLife/Debug.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CheatDelegate
path: ../TinyLife/Debug.cs
startLine: 901
startLine: 685
assemblies:
- Tiny Life
namespace: TinyLife
summary: A delegate method used for <xref href="TinyLife.Debug.Cheats" data-throw-if-not-resolved="false"></xref>.
summary: "\nA delegate method used for <xref href=\"TinyLife.Debug.Cheats\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: public delegate void Debug.CheatDelegate(GameImpl game, PersonLike person, Match match)
content: public delegate void CheatDelegate(GameImpl game, Person person, Match match);
parameters:
- id: game
type: TinyLife.GameImpl
- id: person
type: TinyLife.Objects.PersonLike
type: TinyLife.Objects.Person
- id: match
type: System.Text.RegularExpressions.Match
content.vb: Public Delegate Sub Debug.CheatDelegate(game As GameImpl, person As PersonLike, match As Match)
content.vb: Public Delegate Sub CheatDelegate(game As GameImpl, person As Person, match As Match)
extensionMethods:
- TinyLife.Debug.CheatDelegate.TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- delegate
modifiers.vb:
- Public
- Delegate
references:
- uid: TinyLife.Debug.Cheats
commentId: F:TinyLife.Debug.Cheats
href: TinyLife.Debug.html#TinyLife_Debug_Cheats
name: Cheats
nameWithType: Debug.Cheats
fullName: TinyLife.Debug.Cheats
isExternal: true
- uid: TinyLife
commentId: N:TinyLife
href: TinyLife.html
name: TinyLife
nameWithType: TinyLife
fullName: TinyLife
@ -54,68 +56,55 @@ references:
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<CheatDelegate>(CheatDelegate)
nameWithType: Extensions.JsonCopy<Debug.CheatDelegate>(Debug.CheatDelegate)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Debug.CheatDelegate>(TinyLife.Debug.CheatDelegate)
nameWithType.vb: Extensions.JsonCopy(Of Debug.CheatDelegate)(Debug.CheatDelegate)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Debug.CheatDelegate)(TinyLife.Debug.CheatDelegate)
name.vb: JsonCopy(Of CheatDelegate)(CheatDelegate)
name: JsonCopy<Debug.CheatDelegate>()
nameWithType: Extensions.JsonCopy<Debug.CheatDelegate>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Debug.CheatDelegate>()
nameWithType.vb: Extensions.JsonCopy(Of Debug.CheatDelegate)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Debug.CheatDelegate)()
name.vb: JsonCopy(Of Debug.CheatDelegate)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Debug.CheatDelegate)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Debug.CheatDelegate
name: CheatDelegate
href: TinyLife.Debug.CheatDelegate.html
- name: '>'
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<Debug.CheatDelegate>
nameWithType: Extensions.JsonCopy<Debug.CheatDelegate>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Debug.CheatDelegate>
- name: (
- uid: TinyLife.Debug.CheatDelegate
name: CheatDelegate
href: TinyLife.Debug.CheatDelegate.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Debug.CheatDelegate)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of Debug.CheatDelegate)
nameWithType: Extensions.JsonCopy(Of Debug.CheatDelegate)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Debug.CheatDelegate)
- name: (
- name: Of
- name: " "
- uid: TinyLife.Debug.CheatDelegate
name: CheatDelegate
href: TinyLife.Debug.CheatDelegate.html
- name: )
- name: (
- uid: TinyLife.Debug.CheatDelegate
name: CheatDelegate
href: TinyLife.Debug.CheatDelegate.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.GameImpl
commentId: T:TinyLife.GameImpl
parent: TinyLife
href: TinyLife.GameImpl.html
name: GameImpl
nameWithType: GameImpl
fullName: TinyLife.GameImpl
- uid: TinyLife.Objects.PersonLike
commentId: T:TinyLife.Objects.PersonLike
- uid: TinyLife.Objects.Person
commentId: T:TinyLife.Objects.Person
parent: TinyLife.Objects
href: TinyLife.Objects.PersonLike.html
name: PersonLike
nameWithType: PersonLike
fullName: TinyLife.Objects.PersonLike
name: Person
nameWithType: Person
fullName: TinyLife.Objects.Person
- uid: System.Text.RegularExpressions.Match
commentId: T:System.Text.RegularExpressions.Match
parent: System.Text.RegularExpressions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.text.regularexpressions.match
name: Match
nameWithType: Match
fullName: System.Text.RegularExpressions.Match
- 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)
@ -124,111 +113,51 @@ references:
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: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
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: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- 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.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: System.Text.RegularExpressions
commentId: N:System.Text.RegularExpressions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Text.RegularExpressions
nameWithType: System.Text.RegularExpressions
fullName: System.Text.RegularExpressions
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Text
name: Text
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.text
- name: .
- uid: System.Text.RegularExpressions
name: RegularExpressions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.text.regularexpressions
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Text
name: Text
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.text
- name: .
- uid: System.Text.RegularExpressions
name: RegularExpressions
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.text.regularexpressions
- 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

View file

@ -15,18 +15,18 @@ items:
source:
remote:
path: TinyLife/Debug.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DebugDelegate
path: ../TinyLife/Debug.cs
startLine: 906
startLine: 690
assemblies:
- Tiny Life
namespace: TinyLife
summary: A delegate method used for <xref href="TinyLife.Debug.DebugLines" data-throw-if-not-resolved="false"></xref>.
summary: "\nA delegate method used for <xref href=\"TinyLife.Debug.DebugLines\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: public delegate string Debug.DebugDelegate(GameImpl game, Paragraph paragraph)
content: public delegate string DebugDelegate(GameImpl game, Paragraph paragraph);
parameters:
- id: game
type: TinyLife.GameImpl
@ -34,19 +34,21 @@ items:
type: MLEM.Ui.Elements.Paragraph
return:
type: System.String
content.vb: Public Delegate Function Debug.DebugDelegate(game As GameImpl, paragraph As Paragraph) As String
content.vb: Public Delegate Function DebugDelegate(game As GameImpl, paragraph As Paragraph) As String
extensionMethods:
- TinyLife.Debug.DebugDelegate.TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- delegate
modifiers.vb:
- Public
- Delegate
references:
- uid: TinyLife.Debug.DebugLines
commentId: F:TinyLife.Debug.DebugLines
href: TinyLife.Debug.html#TinyLife_Debug_DebugLines
name: DebugLines
nameWithType: Debug.DebugLines
fullName: TinyLife.Debug.DebugLines
isExternal: true
- uid: TinyLife
commentId: N:TinyLife
href: TinyLife.html
name: TinyLife
nameWithType: TinyLife
fullName: TinyLife
@ -54,47 +56,37 @@ references:
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<DebugDelegate>(DebugDelegate)
nameWithType: Extensions.JsonCopy<Debug.DebugDelegate>(Debug.DebugDelegate)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Debug.DebugDelegate>(TinyLife.Debug.DebugDelegate)
nameWithType.vb: Extensions.JsonCopy(Of Debug.DebugDelegate)(Debug.DebugDelegate)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Debug.DebugDelegate)(TinyLife.Debug.DebugDelegate)
name.vb: JsonCopy(Of DebugDelegate)(DebugDelegate)
name: JsonCopy<Debug.DebugDelegate>()
nameWithType: Extensions.JsonCopy<Debug.DebugDelegate>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Debug.DebugDelegate>()
nameWithType.vb: Extensions.JsonCopy(Of Debug.DebugDelegate)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Debug.DebugDelegate)()
name.vb: JsonCopy(Of Debug.DebugDelegate)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Debug.DebugDelegate)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Debug.DebugDelegate
name: DebugDelegate
href: TinyLife.Debug.DebugDelegate.html
- name: '>'
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<Debug.DebugDelegate>
nameWithType: Extensions.JsonCopy<Debug.DebugDelegate>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Debug.DebugDelegate>
- name: (
- uid: TinyLife.Debug.DebugDelegate
name: DebugDelegate
href: TinyLife.Debug.DebugDelegate.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Debug.DebugDelegate)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of Debug.DebugDelegate)
nameWithType: Extensions.JsonCopy(Of Debug.DebugDelegate)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Debug.DebugDelegate)
- name: (
- name: Of
- name: " "
- uid: TinyLife.Debug.DebugDelegate
name: DebugDelegate
href: TinyLife.Debug.DebugDelegate.html
- name: )
- name: (
- uid: TinyLife.Debug.DebugDelegate
name: DebugDelegate
href: TinyLife.Debug.DebugDelegate.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.GameImpl
commentId: T:TinyLife.GameImpl
parent: TinyLife
href: TinyLife.GameImpl.html
name: GameImpl
nameWithType: GameImpl
fullName: TinyLife.GameImpl
@ -109,16 +101,11 @@ references:
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
name: String
nameWithType: String
fullName: System.String
- 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)
@ -127,30 +114,35 @@ references:
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: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
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: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- 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
@ -160,56 +152,14 @@ references:
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: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- 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

File diff suppressed because it is too large Load diff

View file

@ -1,240 +0,0 @@
### YamlMime:ManagedReference
items:
- uid: TinyLife.DifficultyModifier
commentId: T:TinyLife.DifficultyModifier
id: DifficultyModifier
parent: TinyLife
children:
- TinyLife.DifficultyModifier.Chill
- TinyLife.DifficultyModifier.Intense
- TinyLife.DifficultyModifier.Normal
langs:
- csharp
- vb
name: DifficultyModifier
nameWithType: DifficultyModifier
fullName: TinyLife.DifficultyModifier
type: Enum
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DifficultyModifier
path: ../TinyLife/Options.cs
startLine: 664
assemblies:
- Tiny Life
namespace: TinyLife
summary: An enumeration used for <xref href="TinyLife.PerSaveOptions.Difficulty" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public enum DifficultyModifier
content.vb: Public Enum DifficultyModifier
extensionMethods:
- TinyLife.DifficultyModifier.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.DifficultyModifier.Chill
commentId: F:TinyLife.DifficultyModifier.Chill
id: Chill
parent: TinyLife.DifficultyModifier
langs:
- csharp
- vb
name: Chill
nameWithType: DifficultyModifier.Chill
fullName: TinyLife.DifficultyModifier.Chill
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Chill
path: ../TinyLife/Options.cs
startLine: 669
assemblies:
- Tiny Life
namespace: TinyLife
summary: The chill difficulty modifier, which should make aspects of the game easier.
example: []
syntax:
content: Chill = 0
return:
type: TinyLife.DifficultyModifier
- uid: TinyLife.DifficultyModifier.Normal
commentId: F:TinyLife.DifficultyModifier.Normal
id: Normal
parent: TinyLife.DifficultyModifier
langs:
- csharp
- vb
name: Normal
nameWithType: DifficultyModifier.Normal
fullName: TinyLife.DifficultyModifier.Normal
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Normal
path: ../TinyLife/Options.cs
startLine: 673
assemblies:
- Tiny Life
namespace: TinyLife
summary: The normal, default difficulty modifier.
example: []
syntax:
content: Normal = 1
return:
type: TinyLife.DifficultyModifier
- uid: TinyLife.DifficultyModifier.Intense
commentId: F:TinyLife.DifficultyModifier.Intense
id: Intense
parent: TinyLife.DifficultyModifier
langs:
- csharp
- vb
name: Intense
nameWithType: DifficultyModifier.Intense
fullName: TinyLife.DifficultyModifier.Intense
type: Field
source:
remote:
path: TinyLife/Options.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Intense
path: ../TinyLife/Options.cs
startLine: 677
assemblies:
- Tiny Life
namespace: TinyLife
summary: The intense difficulty modifier, which should make aspects of the game harder.
example: []
syntax:
content: Intense = 2
return:
type: TinyLife.DifficultyModifier
references:
- uid: TinyLife.PerSaveOptions.Difficulty
commentId: F:TinyLife.PerSaveOptions.Difficulty
href: TinyLife.PerSaveOptions.html#TinyLife_PerSaveOptions_Difficulty
name: Difficulty
nameWithType: PerSaveOptions.Difficulty
fullName: TinyLife.PerSaveOptions.Difficulty
- uid: TinyLife
commentId: N:TinyLife
href: TinyLife.html
name: TinyLife
nameWithType: TinyLife
fullName: TinyLife
- uid: TinyLife.DifficultyModifier.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<DifficultyModifier>(DifficultyModifier)
nameWithType: Extensions.JsonCopy<DifficultyModifier>(DifficultyModifier)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.DifficultyModifier>(TinyLife.DifficultyModifier)
nameWithType.vb: Extensions.JsonCopy(Of DifficultyModifier)(DifficultyModifier)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.DifficultyModifier)(TinyLife.DifficultyModifier)
name.vb: JsonCopy(Of DifficultyModifier)(DifficultyModifier)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.DifficultyModifier)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.DifficultyModifier
name: DifficultyModifier
href: TinyLife.DifficultyModifier.html
- name: '>'
- name: (
- uid: TinyLife.DifficultyModifier
name: DifficultyModifier
href: TinyLife.DifficultyModifier.html
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.DifficultyModifier)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- uid: TinyLife.DifficultyModifier
name: DifficultyModifier
href: TinyLife.DifficultyModifier.html
- name: )
- name: (
- uid: TinyLife.DifficultyModifier
name: DifficultyModifier
href: TinyLife.DifficultyModifier.html
- name: )
- 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: TinyLife.DifficultyModifier
commentId: T:TinyLife.DifficultyModifier
parent: TinyLife
href: TinyLife.DifficultyModifier.html
name: DifficultyModifier
nameWithType: DifficultyModifier
fullName: TinyLife.DifficultyModifier

View file

@ -17,28 +17,21 @@ items:
source:
remote:
path: TinyLife/Emotions/IEmotionSource.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CombinedEmotionSource
path: ../TinyLife/Emotions/IEmotionSource.cs
startLine: 28
startLine: 24
assemblies:
- Tiny Life
namespace: TinyLife.Emotions
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>.
summary: "\nA combined emotion source is an <xref href=\"TinyLife.Emotions.IEmotionSource\" data-throw-if-not-resolved=\"false\"></xref> that combines multiple underlying emotion sources together.\nA combined emotion source is displayed as multiple lines in the <xref href=\"TinyLife.Emotions.CombinedEmotionSource.SourceString\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: >-
[DataContract]
public class CombinedEmotionSource : IEmotionSource
content: 'public class CombinedEmotionSource : IEmotionSource'
content.vb: >-
<DataContract>
Public Class CombinedEmotionSource Implements IEmotionSource
Public Class CombinedEmotionSource
Implements IEmotionSource
inheritance:
- System.Object
implements:
@ -53,10 +46,12 @@ items:
- System.Object.ToString
extensionMethods:
- TinyLife.Emotions.CombinedEmotionSource.TinyLife.Utilities.Extensions.JsonCopy``1
attributes:
- type: System.Runtime.Serialization.DataContractAttribute
ctor: System.Runtime.Serialization.DataContractAttribute.#ctor
arguments: []
modifiers.csharp:
- public
- class
modifiers.vb:
- Public
- Class
- uid: TinyLife.Emotions.CombinedEmotionSource.SourceString
commentId: P:TinyLife.Emotions.CombinedEmotionSource.SourceString
id: SourceString
@ -71,15 +66,15 @@ items:
source:
remote:
path: TinyLife/Emotions/IEmotionSource.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SourceString
path: ../TinyLife/Emotions/IEmotionSource.cs
startLine: 32
startLine: 27
assemblies:
- Tiny Life
namespace: TinyLife.Emotions
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
summary: "\nA (localized) string that is displayed when hovering over an <xref href=\"TinyLife.Emotions.EmotionModifier\" data-throw-if-not-resolved=\"false\"></xref> that has this source\n"
example: []
syntax:
content: public string SourceString { get; }
@ -90,6 +85,12 @@ items:
overload: TinyLife.Emotions.CombinedEmotionSource.SourceString*
implements:
- TinyLife.Emotions.IEmotionSource.SourceString
modifiers.csharp:
- public
- get
modifiers.vb:
- Public
- ReadOnly
- uid: TinyLife.Emotions.CombinedEmotionSource.#ctor(TinyLife.Emotions.IEmotionSource[])
commentId: M:TinyLife.Emotions.CombinedEmotionSource.#ctor(TinyLife.Emotions.IEmotionSource[])
id: '#ctor(TinyLife.Emotions.IEmotionSource[])'
@ -97,22 +98,22 @@ items:
langs:
- csharp
- vb
name: CombinedEmotionSource(params IEmotionSource[])
nameWithType: CombinedEmotionSource.CombinedEmotionSource(params IEmotionSource[])
fullName: TinyLife.Emotions.CombinedEmotionSource.CombinedEmotionSource(params TinyLife.Emotions.IEmotionSource[])
name: CombinedEmotionSource(IEmotionSource[])
nameWithType: CombinedEmotionSource.CombinedEmotionSource(IEmotionSource[])
fullName: TinyLife.Emotions.CombinedEmotionSource.CombinedEmotionSource(TinyLife.Emotions.IEmotionSource[])
type: Constructor
source:
remote:
path: TinyLife/Emotions/IEmotionSource.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/Emotions/IEmotionSource.cs
startLine: 40
startLine: 35
assemblies:
- Tiny Life
namespace: TinyLife.Emotions
summary: Creates a new combined emotion source with the given underlying sources.
summary: "\nCreates a new combined emotion source with the given underlying sources.\n"
example: []
syntax:
content: public CombinedEmotionSource(params IEmotionSource[] sources)
@ -122,326 +123,354 @@ items:
description: The underlying sources to combine.
content.vb: Public Sub New(ParamArray sources As IEmotionSource())
overload: TinyLife.Emotions.CombinedEmotionSource.#ctor*
nameWithType.vb: CombinedEmotionSource.New(ParamArray IEmotionSource())
fullName.vb: TinyLife.Emotions.CombinedEmotionSource.New(ParamArray TinyLife.Emotions.IEmotionSource())
name.vb: New(ParamArray IEmotionSource())
nameWithType.vb: CombinedEmotionSource.CombinedEmotionSource(IEmotionSource())
modifiers.csharp:
- public
modifiers.vb:
- Public
fullName.vb: TinyLife.Emotions.CombinedEmotionSource.CombinedEmotionSource(TinyLife.Emotions.IEmotionSource())
name.vb: CombinedEmotionSource(IEmotionSource())
references:
- 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: TinyLife.Emotions.CombinedEmotionSource.SourceString
commentId: P:TinyLife.Emotions.CombinedEmotionSource.SourceString
href: TinyLife.Emotions.CombinedEmotionSource.html#TinyLife_Emotions_CombinedEmotionSource_SourceString
name: SourceString
nameWithType: CombinedEmotionSource.SourceString
fullName: TinyLife.Emotions.CombinedEmotionSource.SourceString
isExternal: true
- 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: 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
name: Object
nameWithType: Object
fullName: System.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)
name: Equals(Object)
nameWithType: Object.Equals(Object)
fullName: System.Object.Equals(System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
nameWithType: )
fullName: )
- 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)
name: Equals(Object, Object)
nameWithType: Object.Equals(Object, Object)
fullName: System.Object.Equals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
nameWithType: )
fullName: )
- 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()
nameWithType: Object.GetHashCode()
fullName: System.Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- 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()
nameWithType: Object.GetType()
fullName: System.Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- 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()
nameWithType: Object.MemberwiseClone()
fullName: System.Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- 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)
name: ReferenceEquals(Object, Object)
nameWithType: Object.ReferenceEquals(Object, Object)
fullName: System.Object.ReferenceEquals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
nameWithType: )
fullName: )
- 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()
nameWithType: Object.ToString()
fullName: System.Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- 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)
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
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)
name: JsonCopy<CombinedEmotionSource>()
nameWithType: Extensions.JsonCopy<CombinedEmotionSource>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Emotions.CombinedEmotionSource>()
nameWithType.vb: Extensions.JsonCopy(Of CombinedEmotionSource)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Emotions.CombinedEmotionSource)()
name.vb: JsonCopy(Of CombinedEmotionSource)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Emotions.CombinedEmotionSource)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Emotions.CombinedEmotionSource
name: CombinedEmotionSource
href: TinyLife.Emotions.CombinedEmotionSource.html
- name: '>'
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<CombinedEmotionSource>
nameWithType: Extensions.JsonCopy<CombinedEmotionSource>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Emotions.CombinedEmotionSource>
- name: (
- uid: TinyLife.Emotions.CombinedEmotionSource
name: CombinedEmotionSource
href: TinyLife.Emotions.CombinedEmotionSource.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Emotions.CombinedEmotionSource)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of CombinedEmotionSource)
nameWithType: Extensions.JsonCopy(Of CombinedEmotionSource)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Emotions.CombinedEmotionSource)
- name: (
- name: Of
- name: " "
- uid: TinyLife.Emotions.CombinedEmotionSource
name: CombinedEmotionSource
href: TinyLife.Emotions.CombinedEmotionSource.html
- name: )
- name: (
- uid: TinyLife.Emotions.CombinedEmotionSource
name: CombinedEmotionSource
href: TinyLife.Emotions.CombinedEmotionSource.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- 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)
@ -450,72 +479,51 @@ references:
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: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
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: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- 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: 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.Emotions.CombinedEmotionSource.SourceString*
commentId: Overload:TinyLife.Emotions.CombinedEmotionSource.SourceString
href: TinyLife.Emotions.CombinedEmotionSource.html#TinyLife_Emotions_CombinedEmotionSource_SourceString
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
href: TinyLife.Emotions.IEmotionSource.html#TinyLife_Emotions_IEmotionSource_SourceString
name: SourceString
nameWithType: IEmotionSource.SourceString
fullName: TinyLife.Emotions.IEmotionSource.SourceString
@ -523,25 +531,16 @@ references:
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
name: String
nameWithType: String
fullName: System.String
- uid: TinyLife.Emotions.CombinedEmotionSource.#ctor*
commentId: Overload:TinyLife.Emotions.CombinedEmotionSource.#ctor
href: TinyLife.Emotions.CombinedEmotionSource.html#TinyLife_Emotions_CombinedEmotionSource__ctor_TinyLife_Emotions_IEmotionSource___
name: CombinedEmotionSource
nameWithType: CombinedEmotionSource.CombinedEmotionSource
fullName: TinyLife.Emotions.CombinedEmotionSource.CombinedEmotionSource
nameWithType.vb: CombinedEmotionSource.New
fullName.vb: TinyLife.Emotions.CombinedEmotionSource.New
name.vb: New
- uid: TinyLife.Emotions.IEmotionSource[]
isExternal: true
href: TinyLife.Emotions.IEmotionSource.html
name: IEmotionSource[]
nameWithType: IEmotionSource[]
fullName: TinyLife.Emotions.IEmotionSource[]
@ -551,12 +550,16 @@ references:
spec.csharp:
- uid: TinyLife.Emotions.IEmotionSource
name: IEmotionSource
href: TinyLife.Emotions.IEmotionSource.html
- name: '['
- name: ']'
nameWithType: IEmotionSource
fullName: TinyLife.Emotions.IEmotionSource
- name: '[]'
nameWithType: '[]'
fullName: '[]'
spec.vb:
- uid: TinyLife.Emotions.IEmotionSource
name: IEmotionSource
href: TinyLife.Emotions.IEmotionSource.html
- name: (
- name: )
nameWithType: IEmotionSource
fullName: TinyLife.Emotions.IEmotionSource
- name: ()
nameWithType: ()
fullName: ()

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -18,24 +18,27 @@ items:
source:
remote:
path: TinyLife/Emotions/EmotionType.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TypeCategory
path: ../TinyLife/Emotions/EmotionType.cs
startLine: 99
startLine: 93
assemblies:
- Tiny Life
namespace: TinyLife.Emotions
summary: >-
An enumeration used for <xref href="TinyLife.Emotions.EmotionType.Category" data-throw-if-not-resolved="false"></xref> that represents a general category an emotion can fit into.
The values are ordered in a way such that, if two emotion amounts sum to the same value, the one with the lower category will be chosen.
summary: "\nAn enumeration used for <xref href=\"TinyLife.Emotions.EmotionType.Category\" data-throw-if-not-resolved=\"false\"></xref> that represents a general category an emotion can fit into.\nThe values are ordered in a way such that, if two emotion amounts sum to the same value, the one with the lower category will be chosen.\n"
example: []
syntax:
content: public enum EmotionType.TypeCategory
content.vb: Public Enum EmotionType.TypeCategory
content: public enum TypeCategory
content.vb: Public Enum TypeCategory
extensionMethods:
- TinyLife.Emotions.EmotionType.TypeCategory.TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- enum
modifiers.vb:
- Public
- Enum
- uid: TinyLife.Emotions.EmotionType.TypeCategory.Negative
commentId: F:TinyLife.Emotions.EmotionType.TypeCategory.Negative
id: Negative
@ -50,20 +53,26 @@ items:
source:
remote:
path: TinyLife/Emotions/EmotionType.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Negative
path: ../TinyLife/Emotions/EmotionType.cs
startLine: 104
startLine: 98
assemblies:
- Tiny Life
namespace: TinyLife.Emotions
summary: A negative emotion, like <xref href="TinyLife.Emotions.EmotionType.Sad" data-throw-if-not-resolved="false"></xref> or <xref href="TinyLife.Emotions.EmotionType.Embarrassed" data-throw-if-not-resolved="false"></xref>
summary: "\nA negative emotion, like <xref href=\"TinyLife.Emotions.EmotionType.Sad\" data-throw-if-not-resolved=\"false\"></xref> or <xref href=\"TinyLife.Emotions.EmotionType.Embarrassed\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
syntax:
content: Negative = 0
return:
type: TinyLife.Emotions.EmotionType.TypeCategory
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Emotions.EmotionType.TypeCategory.Positive
commentId: F:TinyLife.Emotions.EmotionType.TypeCategory.Positive
id: Positive
@ -78,20 +87,26 @@ items:
source:
remote:
path: TinyLife/Emotions/EmotionType.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Positive
path: ../TinyLife/Emotions/EmotionType.cs
startLine: 108
startLine: 102
assemblies:
- Tiny Life
namespace: TinyLife.Emotions
summary: A positive emotion, like <xref href="TinyLife.Emotions.EmotionType.Happy" data-throw-if-not-resolved="false"></xref>
summary: "\nA positive emotion, like <xref href=\"TinyLife.Emotions.EmotionType.Happy\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
syntax:
content: Positive = 1
return:
type: TinyLife.Emotions.EmotionType.TypeCategory
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.Emotions.EmotionType.TypeCategory.Neutral
commentId: F:TinyLife.Emotions.EmotionType.TypeCategory.Neutral
id: Neutral
@ -106,93 +121,69 @@ items:
source:
remote:
path: TinyLife/Emotions/EmotionType.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Neutral
path: ../TinyLife/Emotions/EmotionType.cs
startLine: 112
startLine: 106
assemblies:
- Tiny Life
namespace: TinyLife.Emotions
summary: A neutral emotion, like <xref href="TinyLife.Emotions.EmotionType.Fine" data-throw-if-not-resolved="false"></xref> or <xref href="TinyLife.Emotions.EmotionType.Asleep" data-throw-if-not-resolved="false"></xref>
summary: "\nA neutral emotion, like <xref href=\"TinyLife.Emotions.EmotionType.Fine\" data-throw-if-not-resolved=\"false\"></xref> or <xref href=\"TinyLife.Emotions.EmotionType.Asleep\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
syntax:
content: Neutral = 2
return:
type: TinyLife.Emotions.EmotionType.TypeCategory
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
references:
- uid: TinyLife.Emotions.EmotionType.Category
commentId: F:TinyLife.Emotions.EmotionType.Category
href: TinyLife.Emotions.EmotionType.html#TinyLife_Emotions_EmotionType_Category
name: Category
nameWithType: EmotionType.Category
fullName: TinyLife.Emotions.EmotionType.Category
isExternal: true
- 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.Emotions.EmotionType.TypeCategory.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<TypeCategory>(TypeCategory)
nameWithType: Extensions.JsonCopy<EmotionType.TypeCategory>(EmotionType.TypeCategory)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Emotions.EmotionType.TypeCategory>(TinyLife.Emotions.EmotionType.TypeCategory)
nameWithType.vb: Extensions.JsonCopy(Of EmotionType.TypeCategory)(EmotionType.TypeCategory)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Emotions.EmotionType.TypeCategory)(TinyLife.Emotions.EmotionType.TypeCategory)
name.vb: JsonCopy(Of TypeCategory)(TypeCategory)
name: JsonCopy<EmotionType.TypeCategory>()
nameWithType: Extensions.JsonCopy<EmotionType.TypeCategory>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Emotions.EmotionType.TypeCategory>()
nameWithType.vb: Extensions.JsonCopy(Of EmotionType.TypeCategory)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Emotions.EmotionType.TypeCategory)()
name.vb: JsonCopy(Of EmotionType.TypeCategory)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Emotions.EmotionType.TypeCategory)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Emotions.EmotionType.TypeCategory
name: TypeCategory
href: TinyLife.Emotions.EmotionType.TypeCategory.html
- name: '>'
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<EmotionType.TypeCategory>
nameWithType: Extensions.JsonCopy<EmotionType.TypeCategory>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Emotions.EmotionType.TypeCategory>
- name: (
- uid: TinyLife.Emotions.EmotionType.TypeCategory
name: TypeCategory
href: TinyLife.Emotions.EmotionType.TypeCategory.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Emotions.EmotionType.TypeCategory)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of EmotionType.TypeCategory)
nameWithType: Extensions.JsonCopy(Of EmotionType.TypeCategory)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Emotions.EmotionType.TypeCategory)
- name: (
- name: Of
- name: " "
- uid: TinyLife.Emotions.EmotionType.TypeCategory
name: TypeCategory
href: TinyLife.Emotions.EmotionType.TypeCategory.html
- name: )
- name: (
- uid: TinyLife.Emotions.EmotionType.TypeCategory
name: TypeCategory
href: TinyLife.Emotions.EmotionType.TypeCategory.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- 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)
@ -201,105 +192,61 @@ references:
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: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
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: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- 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: 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
isExternal: true
- uid: TinyLife.Emotions.EmotionType.Embarrassed
commentId: F:TinyLife.Emotions.EmotionType.Embarrassed
href: TinyLife.Emotions.EmotionType.html#TinyLife_Emotions_EmotionType_Embarrassed
name: Embarrassed
nameWithType: EmotionType.Embarrassed
fullName: TinyLife.Emotions.EmotionType.Embarrassed
isExternal: true
- uid: TinyLife.Emotions.EmotionType.TypeCategory
commentId: T:TinyLife.Emotions.EmotionType.TypeCategory
parent: TinyLife.Emotions
href: TinyLife.Emotions.EmotionType.html
name: EmotionType.TypeCategory
nameWithType: EmotionType.TypeCategory
fullName: TinyLife.Emotions.EmotionType.TypeCategory
spec.csharp:
- uid: TinyLife.Emotions.EmotionType
name: EmotionType
href: TinyLife.Emotions.EmotionType.html
- name: .
- uid: TinyLife.Emotions.EmotionType.TypeCategory
name: TypeCategory
href: TinyLife.Emotions.EmotionType.TypeCategory.html
spec.vb:
- uid: TinyLife.Emotions.EmotionType
name: EmotionType
href: TinyLife.Emotions.EmotionType.html
- name: .
- uid: TinyLife.Emotions.EmotionType.TypeCategory
name: TypeCategory
href: TinyLife.Emotions.EmotionType.TypeCategory.html
- uid: TinyLife.Emotions.EmotionType.Happy
commentId: F:TinyLife.Emotions.EmotionType.Happy
href: TinyLife.Emotions.EmotionType.html#TinyLife_Emotions_EmotionType_Happy
name: Happy
nameWithType: EmotionType.Happy
fullName: TinyLife.Emotions.EmotionType.Happy
isExternal: true
- uid: TinyLife.Emotions.EmotionType.Fine
commentId: F:TinyLife.Emotions.EmotionType.Fine
href: TinyLife.Emotions.EmotionType.html#TinyLife_Emotions_EmotionType_Fine
name: Fine
nameWithType: EmotionType.Fine
fullName: TinyLife.Emotions.EmotionType.Fine
isExternal: true
- uid: TinyLife.Emotions.EmotionType.Asleep
commentId: F:TinyLife.Emotions.EmotionType.Asleep
href: TinyLife.Emotions.EmotionType.html#TinyLife_Emotions_EmotionType_Asleep
name: Asleep
nameWithType: EmotionType.Asleep
fullName: TinyLife.Emotions.EmotionType.Asleep
isExternal: true

File diff suppressed because it is too large Load diff

View file

@ -16,28 +16,27 @@ items:
source:
remote:
path: TinyLife/Emotions/IEmotionSource.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: IEmotionSource
path: ../TinyLife/Emotions/IEmotionSource.cs
startLine: 15
startLine: 11
assemblies:
- Tiny Life
namespace: TinyLife.Emotions
summary: >-
This interface can be added to classes that should be able to represent a cause of an emotion.
By default, several of the game's objects, including <xref href="TinyLife.Objects.FurnitureType" data-throw-if-not-resolved="false"></xref>, <xref href="TinyLife.Actions.ActionType" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.PersonalityType" data-throw-if-not-resolved="false"></xref> have this interface.
Note that, since emotion sources are serialized directly when storing a <xref href="TinyLife.Emotions.EmotionModifier.Instance" data-throw-if-not-resolved="false"></xref>, it's recommended that their default serializer is <xref href="MLEM.Data.Json.StaticJsonConverter%601" data-throw-if-not-resolved="false"></xref>.
To combine multiple emotion sources into one, you can use <xref href="TinyLife.Emotions.CombinedEmotionSource" data-throw-if-not-resolved="false"></xref>.
summary: "\nThis interface can be added to classes that should be able to represent a cause of an emotion.\nBy default, several of the game&apos;s objects, including <xref href=\"TinyLife.Objects.FurnitureType\" data-throw-if-not-resolved=\"false\"></xref>, <xref href=\"TinyLife.Actions.ActionType\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.PersonalityType\" data-throw-if-not-resolved=\"false\"></xref> have this interface.\nTo combine multiple emotion sources into one, you can use <xref href=\"TinyLife.Emotions.CombinedEmotionSource\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: public interface IEmotionSource
content.vb: Public Interface IEmotionSource
extensionMethods:
- TinyLife.Emotions.IEmotionSource.TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- interface
modifiers.vb:
- Public
- Interface
- uid: TinyLife.Emotions.IEmotionSource.SourceString
commentId: P:TinyLife.Emotions.IEmotionSource.SourceString
id: SourceString
@ -52,15 +51,15 @@ items:
source:
remote:
path: TinyLife/Emotions/IEmotionSource.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SourceString
path: ../TinyLife/Emotions/IEmotionSource.cs
startLine: 20
startLine: 16
assemblies:
- Tiny Life
namespace: TinyLife.Emotions
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
summary: "\nA (localized) string that is displayed when hovering over an <xref href=\"TinyLife.Emotions.EmotionModifier\" data-throw-if-not-resolved=\"false\"></xref> that has this source\n"
example: []
syntax:
content: string SourceString { get; }
@ -69,198 +68,88 @@ items:
type: System.String
content.vb: ReadOnly Property SourceString As String
overload: TinyLife.Emotions.IEmotionSource.SourceString*
modifiers.csharp:
- get
modifiers.vb:
- ReadOnly
references:
- uid: TinyLife.Objects.FurnitureType
commentId: T:TinyLife.Objects.FurnitureType
parent: TinyLife.Objects
href: TinyLife.Objects.FurnitureType.html
name: FurnitureType
nameWithType: FurnitureType
fullName: TinyLife.Objects.FurnitureType
- 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.PersonalityType
commentId: T:TinyLife.PersonalityType
parent: TinyLife
href: TinyLife.PersonalityType.html
name: PersonalityType
nameWithType: PersonalityType
fullName: TinyLife.PersonalityType
- uid: TinyLife.Emotions.EmotionModifier.Instance
commentId: T:TinyLife.Emotions.EmotionModifier.Instance
parent: TinyLife.Emotions
href: TinyLife.Emotions.EmotionModifier.html
name: EmotionModifier.Instance
nameWithType: EmotionModifier.Instance
fullName: TinyLife.Emotions.EmotionModifier.Instance
spec.csharp:
- uid: TinyLife.Emotions.EmotionModifier
name: EmotionModifier
href: TinyLife.Emotions.EmotionModifier.html
- name: .
- uid: TinyLife.Emotions.EmotionModifier.Instance
name: Instance
href: TinyLife.Emotions.EmotionModifier.Instance.html
spec.vb:
- uid: TinyLife.Emotions.EmotionModifier
name: EmotionModifier
href: TinyLife.Emotions.EmotionModifier.html
- name: .
- uid: TinyLife.Emotions.EmotionModifier.Instance
name: Instance
href: TinyLife.Emotions.EmotionModifier.Instance.html
- uid: MLEM.Data.Json.StaticJsonConverter`1
commentId: T:MLEM.Data.Json.StaticJsonConverter`1
isExternal: true
name: StaticJsonConverter<T>
nameWithType: StaticJsonConverter<T>
fullName: MLEM.Data.Json.StaticJsonConverter<T>
nameWithType.vb: StaticJsonConverter(Of T)
fullName.vb: MLEM.Data.Json.StaticJsonConverter(Of T)
name.vb: StaticJsonConverter(Of T)
spec.csharp:
- uid: MLEM.Data.Json.StaticJsonConverter`1
name: StaticJsonConverter
isExternal: true
- name: <
- name: T
- name: '>'
spec.vb:
- uid: MLEM.Data.Json.StaticJsonConverter`1
name: StaticJsonConverter
isExternal: true
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: TinyLife.Emotions.CombinedEmotionSource
commentId: T:TinyLife.Emotions.CombinedEmotionSource
href: TinyLife.Emotions.CombinedEmotionSource.html
name: CombinedEmotionSource
nameWithType: CombinedEmotionSource
fullName: TinyLife.Emotions.CombinedEmotionSource
- 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.Emotions.IEmotionSource.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<IEmotionSource>(IEmotionSource)
nameWithType: Extensions.JsonCopy<IEmotionSource>(IEmotionSource)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Emotions.IEmotionSource>(TinyLife.Emotions.IEmotionSource)
nameWithType.vb: Extensions.JsonCopy(Of IEmotionSource)(IEmotionSource)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Emotions.IEmotionSource)(TinyLife.Emotions.IEmotionSource)
name.vb: JsonCopy(Of IEmotionSource)(IEmotionSource)
name: JsonCopy<IEmotionSource>()
nameWithType: Extensions.JsonCopy<IEmotionSource>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Emotions.IEmotionSource>()
nameWithType.vb: Extensions.JsonCopy(Of IEmotionSource)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Emotions.IEmotionSource)()
name.vb: JsonCopy(Of IEmotionSource)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Emotions.IEmotionSource)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Emotions.IEmotionSource
name: IEmotionSource
href: TinyLife.Emotions.IEmotionSource.html
- name: '>'
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<IEmotionSource>
nameWithType: Extensions.JsonCopy<IEmotionSource>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Emotions.IEmotionSource>
- name: (
- uid: TinyLife.Emotions.IEmotionSource
name: IEmotionSource
href: TinyLife.Emotions.IEmotionSource.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Emotions.IEmotionSource)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of IEmotionSource)
nameWithType: Extensions.JsonCopy(Of IEmotionSource)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Emotions.IEmotionSource)
- name: (
- name: Of
- name: " "
- uid: TinyLife.Emotions.IEmotionSource
name: IEmotionSource
href: TinyLife.Emotions.IEmotionSource.html
- name: )
- name: (
- uid: TinyLife.Emotions.IEmotionSource
name: IEmotionSource
href: TinyLife.Emotions.IEmotionSource.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- 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
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: TinyLife
commentId: N:TinyLife
href: TinyLife.html
name: TinyLife
nameWithType: TinyLife
fullName: TinyLife
- 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)
@ -269,65 +158,51 @@ references:
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: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
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: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- 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: 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.Emotions.IEmotionSource.SourceString*
commentId: Overload:TinyLife.Emotions.IEmotionSource.SourceString
href: TinyLife.Emotions.IEmotionSource.html#TinyLife_Emotions_IEmotionSource_SourceString
name: SourceString
nameWithType: IEmotionSource.SourceString
fullName: TinyLife.Emotions.IEmotionSource.SourceString
@ -335,17 +210,12 @@ references:
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
name: String
nameWithType: String
fullName: System.String
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System

View file

@ -23,95 +23,40 @@ references:
- 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.Emotions.EmotionModifier.Instance
commentId: T:TinyLife.Emotions.EmotionModifier.Instance
parent: TinyLife.Emotions
href: TinyLife.Emotions.EmotionModifier.html
name: EmotionModifier.Instance
nameWithType: EmotionModifier.Instance
fullName: TinyLife.Emotions.EmotionModifier.Instance
spec.csharp:
- uid: TinyLife.Emotions.EmotionModifier
name: EmotionModifier
href: TinyLife.Emotions.EmotionModifier.html
- name: .
- uid: TinyLife.Emotions.EmotionModifier.Instance
name: Instance
href: TinyLife.Emotions.EmotionModifier.Instance.html
spec.vb:
- uid: TinyLife.Emotions.EmotionModifier
name: EmotionModifier
href: TinyLife.Emotions.EmotionModifier.html
- name: .
- uid: TinyLife.Emotions.EmotionModifier.Instance
name: Instance
href: TinyLife.Emotions.EmotionModifier.Instance.html
- uid: TinyLife.Emotions.EmotionType
commentId: T:TinyLife.Emotions.EmotionType
parent: TinyLife.Emotions
href: TinyLife.Emotions.EmotionType.html
name: EmotionType
nameWithType: EmotionType
fullName: TinyLife.Emotions.EmotionType
- uid: TinyLife.Emotions.EmotionType.TypeCategory
commentId: T:TinyLife.Emotions.EmotionType.TypeCategory
parent: TinyLife.Emotions
href: TinyLife.Emotions.EmotionType.html
name: EmotionType.TypeCategory
nameWithType: EmotionType.TypeCategory
fullName: TinyLife.Emotions.EmotionType.TypeCategory
spec.csharp:
- uid: TinyLife.Emotions.EmotionType
name: EmotionType
href: TinyLife.Emotions.EmotionType.html
- name: .
- uid: TinyLife.Emotions.EmotionType.TypeCategory
name: TypeCategory
href: TinyLife.Emotions.EmotionType.TypeCategory.html
spec.vb:
- uid: TinyLife.Emotions.EmotionType
name: EmotionType
href: TinyLife.Emotions.EmotionType.html
- name: .
- uid: TinyLife.Emotions.EmotionType.TypeCategory
name: TypeCategory
href: TinyLife.Emotions.EmotionType.TypeCategory.html
- 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: TinyLife.Emotions.CombinedEmotionSource
commentId: T:TinyLife.Emotions.CombinedEmotionSource
href: TinyLife.Emotions.CombinedEmotionSource.html
name: CombinedEmotionSource
nameWithType: CombinedEmotionSource
fullName: TinyLife.Emotions.CombinedEmotionSource
- 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

View file

@ -22,21 +22,27 @@ items:
source:
remote:
path: TinyLife/GameImpl.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GameMode
path: ../TinyLife/GameImpl.cs
startLine: 1400
startLine: 1034
assemblies:
- Tiny Life
namespace: TinyLife
summary: An enumeration that contains values representing the different game modes the game can be in
summary: "\nAn enumeration that contains values representing the different game modes the game can be in\n"
example: []
syntax:
content: public enum GameImpl.GameMode
content.vb: Public Enum GameImpl.GameMode
content: public enum GameMode
content.vb: Public Enum GameMode
extensionMethods:
- TinyLife.GameImpl.GameMode.TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- enum
modifiers.vb:
- Public
- Enum
- uid: TinyLife.GameImpl.GameMode.InitialLoad
commentId: F:TinyLife.GameImpl.GameMode.InitialLoad
id: InitialLoad
@ -51,20 +57,26 @@ items:
source:
remote:
path: TinyLife/GameImpl.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InitialLoad
path: ../TinyLife/GameImpl.cs
startLine: 1403
startLine: 1037
assemblies:
- Tiny Life
namespace: TinyLife
summary: A game mode that represents the loading screen at startup
summary: 'A game mode that represents the loading screen at startup '
example: []
syntax:
content: InitialLoad = 0
return:
type: TinyLife.GameImpl.GameMode
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GameImpl.GameMode.Splash
commentId: F:TinyLife.GameImpl.GameMode.Splash
id: Splash
@ -79,20 +91,26 @@ items:
source:
remote:
path: TinyLife/GameImpl.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Splash
path: ../TinyLife/GameImpl.cs
startLine: 1405
startLine: 1039
assemblies:
- Tiny Life
namespace: TinyLife
summary: A game mode that represents the splash screen at startup
summary: 'A game mode that represents the splash screen at startup '
example: []
syntax:
content: Splash = 1
return:
type: TinyLife.GameImpl.GameMode
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GameImpl.GameMode.MainMenu
commentId: F:TinyLife.GameImpl.GameMode.MainMenu
id: MainMenu
@ -107,20 +125,26 @@ items:
source:
remote:
path: TinyLife/GameImpl.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MainMenu
path: ../TinyLife/GameImpl.cs
startLine: 1407
startLine: 1041
assemblies:
- Tiny Life
namespace: TinyLife
summary: A game mode that represents the main menu
summary: 'A game mode that represents the main menu '
example: []
syntax:
content: MainMenu = 2
return:
type: TinyLife.GameImpl.GameMode
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GameImpl.GameMode.SelectHousehold
commentId: F:TinyLife.GameImpl.GameMode.SelectHousehold
id: SelectHousehold
@ -135,20 +159,26 @@ items:
source:
remote:
path: TinyLife/GameImpl.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SelectHousehold
path: ../TinyLife/GameImpl.cs
startLine: 1409
startLine: 1043
assemblies:
- Tiny Life
namespace: TinyLife
summary: A game mode that represents the map selection menu
summary: 'A game mode that represents the map selection menu '
example: []
syntax:
content: SelectHousehold = 3
return:
type: TinyLife.GameImpl.GameMode
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GameImpl.GameMode.InGameHousehold
commentId: F:TinyLife.GameImpl.GameMode.InGameHousehold
id: InGameHousehold
@ -163,20 +193,26 @@ items:
source:
remote:
path: TinyLife/GameImpl.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InGameHousehold
path: ../TinyLife/GameImpl.cs
startLine: 1411
startLine: 1045
assemblies:
- Tiny Life
namespace: TinyLife
summary: A game mode that represents the play mode, either in-game or in build mode
summary: 'A game mode that represents the play mode, either in-game or in build mode '
example: []
syntax:
content: InGameHousehold = 4
return:
type: TinyLife.GameImpl.GameMode
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GameImpl.GameMode.BuildOnly
commentId: F:TinyLife.GameImpl.GameMode.BuildOnly
id: BuildOnly
@ -191,20 +227,26 @@ items:
source:
remote:
path: TinyLife/GameImpl.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BuildOnly
path: ../TinyLife/GameImpl.cs
startLine: 1413
startLine: 1047
assemblies:
- Tiny Life
namespace: TinyLife
summary: A game mode that represents the play mode forced to build mode (with no current household)
summary: 'A game mode that represents the play mode forced to build mode (with no current household) '
example: []
syntax:
content: BuildOnly = 5
return:
type: TinyLife.GameImpl.GameMode
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GameImpl.GameMode.CharacterCreation
commentId: F:TinyLife.GameImpl.GameMode.CharacterCreation
id: CharacterCreation
@ -219,24 +261,29 @@ items:
source:
remote:
path: TinyLife/GameImpl.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CharacterCreation
path: ../TinyLife/GameImpl.cs
startLine: 1415
startLine: 1049
assemblies:
- Tiny Life
namespace: TinyLife
summary: A game mode that represents the <xref href="TinyLife.Uis.CharacterCreator" data-throw-if-not-resolved="false"></xref>
summary: 'A game mode that represents the <xref href="TinyLife.Uis.CharacterCreator" data-throw-if-not-resolved="false"></xref> '
example: []
syntax:
content: CharacterCreation = 6
return:
type: TinyLife.GameImpl.GameMode
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
references:
- uid: TinyLife
commentId: N:TinyLife
href: TinyLife.html
name: TinyLife
nameWithType: TinyLife
fullName: TinyLife
@ -244,46 +291,36 @@ references:
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<GameMode>(GameMode)
nameWithType: Extensions.JsonCopy<GameImpl.GameMode>(GameImpl.GameMode)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.GameImpl.GameMode>(TinyLife.GameImpl.GameMode)
nameWithType.vb: Extensions.JsonCopy(Of GameImpl.GameMode)(GameImpl.GameMode)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.GameImpl.GameMode)(TinyLife.GameImpl.GameMode)
name.vb: JsonCopy(Of GameMode)(GameMode)
name: JsonCopy<GameImpl.GameMode>()
nameWithType: Extensions.JsonCopy<GameImpl.GameMode>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.GameImpl.GameMode>()
nameWithType.vb: Extensions.JsonCopy(Of GameImpl.GameMode)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.GameImpl.GameMode)()
name.vb: JsonCopy(Of GameImpl.GameMode)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.GameImpl.GameMode)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.GameImpl.GameMode
name: GameMode
href: TinyLife.GameImpl.GameMode.html
- name: '>'
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<GameImpl.GameMode>
nameWithType: Extensions.JsonCopy<GameImpl.GameMode>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.GameImpl.GameMode>
- name: (
- uid: TinyLife.GameImpl.GameMode
name: GameMode
href: TinyLife.GameImpl.GameMode.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.GameImpl.GameMode)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of GameImpl.GameMode)
nameWithType: Extensions.JsonCopy(Of GameImpl.GameMode)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.GameImpl.GameMode)
- name: (
- name: Of
- name: " "
- uid: TinyLife.GameImpl.GameMode
name: GameMode
href: TinyLife.GameImpl.GameMode.html
- name: )
- name: (
- uid: TinyLife.GameImpl.GameMode
name: GameMode
href: TinyLife.GameImpl.GameMode.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- 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)
@ -292,104 +329,57 @@ references:
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: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
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: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- 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: TinyLife.GameImpl.GameMode
commentId: T:TinyLife.GameImpl.GameMode
parent: TinyLife
href: TinyLife.GameImpl.html
name: GameImpl.GameMode
nameWithType: GameImpl.GameMode
fullName: TinyLife.GameImpl.GameMode
spec.csharp:
- uid: TinyLife.GameImpl
name: GameImpl
href: TinyLife.GameImpl.html
- name: .
- uid: TinyLife.GameImpl.GameMode
name: GameMode
href: TinyLife.GameImpl.GameMode.html
spec.vb:
- uid: TinyLife.GameImpl
name: GameImpl
href: TinyLife.GameImpl.html
- name: .
- uid: TinyLife.GameImpl.GameMode
name: GameMode
href: TinyLife.GameImpl.GameMode.html
- uid: TinyLife.Uis.CharacterCreator
commentId: T:TinyLife.Uis.CharacterCreator
parent: TinyLife.Uis
href: TinyLife.Uis.CharacterCreator.html
name: CharacterCreator
nameWithType: CharacterCreator
fullName: TinyLife.Uis.CharacterCreator
- 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

File diff suppressed because it is too large Load diff

View file

@ -20,24 +20,27 @@ items:
source:
remote:
path: TinyLife/Options.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GameSpeed
path: ../TinyLife/Options.cs
startLine: 614
startLine: 518
assemblies:
- Tiny Life
namespace: TinyLife
summary: >-
An enumeration of all possible game speeds.
The value of each value is the amount that the game's speed is multiplied with.
summary: "\nAn enumeration of all possible game speeds.\nThe value of each value is the amount that the game&apos;s speed is multiplied with.\n"
example: []
syntax:
content: public enum GameSpeed
content.vb: Public Enum GameSpeed
extensionMethods:
- TinyLife.GameSpeed.TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- enum
modifiers.vb:
- Public
- Enum
- uid: TinyLife.GameSpeed.Paused
commentId: F:TinyLife.GameSpeed.Paused
id: Paused
@ -52,20 +55,26 @@ items:
source:
remote:
path: TinyLife/Options.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Paused
path: ../TinyLife/Options.cs
startLine: 619
startLine: 523
assemblies:
- Tiny Life
namespace: TinyLife
summary: A game speed that represents no actions occuring
summary: "\nA game speed that represents no actions occuring\n"
example: []
syntax:
content: Paused = 0
return:
type: TinyLife.GameSpeed
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GameSpeed.Regular
commentId: F:TinyLife.GameSpeed.Regular
id: Regular
@ -80,20 +89,26 @@ items:
source:
remote:
path: TinyLife/Options.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Regular
path: ../TinyLife/Options.cs
startLine: 623
startLine: 527
assemblies:
- Tiny Life
namespace: TinyLife
summary: A game speed that represents the regular speed
summary: "\nA game speed that represents the regular speed\n"
example: []
syntax:
content: Regular = 1
return:
type: TinyLife.GameSpeed
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GameSpeed.Fast
commentId: F:TinyLife.GameSpeed.Fast
id: Fast
@ -108,20 +123,26 @@ items:
source:
remote:
path: TinyLife/Options.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Fast
path: ../TinyLife/Options.cs
startLine: 627
startLine: 531
assemblies:
- Tiny Life
namespace: TinyLife
summary: A game speed with which things happen at twice the <xref href="TinyLife.GameSpeed.Regular" data-throw-if-not-resolved="false"></xref> speed
summary: "\nA game speed with which things happen at twice the <xref href=\"TinyLife.GameSpeed.Regular\" data-throw-if-not-resolved=\"false\"></xref> speed\n"
example: []
syntax:
content: Fast = 2
return:
type: TinyLife.GameSpeed
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GameSpeed.VeryFast
commentId: F:TinyLife.GameSpeed.VeryFast
id: VeryFast
@ -136,20 +157,26 @@ items:
source:
remote:
path: TinyLife/Options.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: VeryFast
path: ../TinyLife/Options.cs
startLine: 631
startLine: 535
assemblies:
- Tiny Life
namespace: TinyLife
summary: A game speed with which things happen at three times the <xref href="TinyLife.GameSpeed.Regular" data-throw-if-not-resolved="false"></xref> speed
summary: "\nA game speed with which things happen at three times the <xref href=\"TinyLife.GameSpeed.Regular\" data-throw-if-not-resolved=\"false\"></xref> speed\n"
example: []
syntax:
content: VeryFast = 3
return:
type: TinyLife.GameSpeed
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GameSpeed.ExtremelyFast
commentId: F:TinyLife.GameSpeed.ExtremelyFast
id: ExtremelyFast
@ -164,27 +191,29 @@ items:
source:
remote:
path: TinyLife/Options.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ExtremelyFast
path: ../TinyLife/Options.cs
startLine: 636
startLine: 540
assemblies:
- Tiny Life
namespace: TinyLife
summary: >-
A game speed with which things happen at 20 times the <xref href="TinyLife.GameSpeed.Regular" data-throw-if-not-resolved="false"></xref> speed.
Note that this option is not selectable and only occurs if every household member is asleep or out of town.
summary: "\nA game speed with which things happen at 20 times the <xref href=\"TinyLife.GameSpeed.Regular\" data-throw-if-not-resolved=\"false\"></xref> speed.\nNote that this option is not selectable and only occurs if every household member is asleep or out of town.\n"
example: []
syntax:
content: ExtremelyFast = 20
return:
type: TinyLife.GameSpeed
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
references:
- uid: TinyLife
commentId: N:TinyLife
href: TinyLife.html
name: TinyLife
nameWithType: TinyLife
fullName: TinyLife
@ -192,46 +221,36 @@ references:
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<GameSpeed>(GameSpeed)
nameWithType: Extensions.JsonCopy<GameSpeed>(GameSpeed)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.GameSpeed>(TinyLife.GameSpeed)
nameWithType.vb: Extensions.JsonCopy(Of GameSpeed)(GameSpeed)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.GameSpeed)(TinyLife.GameSpeed)
name.vb: JsonCopy(Of GameSpeed)(GameSpeed)
name: JsonCopy<GameSpeed>()
nameWithType: Extensions.JsonCopy<GameSpeed>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.GameSpeed>()
nameWithType.vb: Extensions.JsonCopy(Of GameSpeed)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.GameSpeed)()
name.vb: JsonCopy(Of GameSpeed)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.GameSpeed)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.GameSpeed
name: GameSpeed
href: TinyLife.GameSpeed.html
- name: '>'
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<GameSpeed>
nameWithType: Extensions.JsonCopy<GameSpeed>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.GameSpeed>
- name: (
- uid: TinyLife.GameSpeed
name: GameSpeed
href: TinyLife.GameSpeed.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.GameSpeed)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of GameSpeed)
nameWithType: Extensions.JsonCopy(Of GameSpeed)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.GameSpeed)
- name: (
- name: Of
- name: " "
- uid: TinyLife.GameSpeed
name: GameSpeed
href: TinyLife.GameSpeed.html
- name: )
- name: (
- uid: TinyLife.GameSpeed
name: GameSpeed
href: TinyLife.GameSpeed.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- 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)
@ -240,65 +259,49 @@ references:
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: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
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: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- 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: TinyLife.GameSpeed
commentId: T:TinyLife.GameSpeed
parent: TinyLife
href: TinyLife.GameSpeed.html
name: GameSpeed
nameWithType: GameSpeed
fullName: TinyLife.GameSpeed
- uid: TinyLife.GameSpeed.Regular
commentId: F:TinyLife.GameSpeed.Regular
href: TinyLife.GameSpeed.html#TinyLife_GameSpeed_Regular
name: Regular
nameWithType: GameSpeed.Regular
fullName: TinyLife.GameSpeed.Regular
isExternal: true

View file

@ -25,27 +25,30 @@ items:
source:
remote:
path: TinyLife/Relationship.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GenealogyType
path: ../TinyLife/Relationship.cs
startLine: 551
startLine: 368
assemblies:
- Tiny Life
namespace: TinyLife
summary: >-
An enumeration that represents the type that a <xref href="TinyLife.Relationship" data-throw-if-not-resolved="false"></xref>'s genealogy can have.
Note that these typs are deliberately gender-neutral.
summary: "\nAn enumeration that represents the type that a <xref href=\"TinyLife.Relationship\" data-throw-if-not-resolved=\"false\"></xref>&apos;s genealogy can have.\nNote that these typs are deliberately gender-neutral.\n"
example: []
syntax:
content: public enum GenealogyType
content.vb: Public Enum GenealogyType
extensionMethods:
- TinyLife.GenealogyType.TinyLife.Utilities.Extensions.JsonCopy``1
- TinyLife.GenealogyType.TinyLife.Utilities.Extensions.GetOpposite
- TinyLife.GenealogyType.TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType)
- TinyLife.GenealogyType.TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.Objects.AgeGroup)
- TinyLife.GenealogyType.TinyLife.Utilities.Extensions.JsonCopy``1
modifiers.csharp:
- public
- enum
modifiers.vb:
- Public
- Enum
- uid: TinyLife.GenealogyType.Unrelated
commentId: F:TinyLife.GenealogyType.Unrelated
id: Unrelated
@ -60,20 +63,26 @@ items:
source:
remote:
path: TinyLife/Relationship.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Unrelated
path: ../TinyLife/Relationship.cs
startLine: 556
startLine: 373
assemblies:
- Tiny Life
namespace: TinyLife
summary: A genealogy type that represents two unrelated people
summary: "\nA genealogy type that represents two unrelated people\n"
example: []
syntax:
content: Unrelated = 0
return:
type: TinyLife.GenealogyType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GenealogyType.Parent
commentId: F:TinyLife.GenealogyType.Parent
id: Parent
@ -88,20 +97,26 @@ items:
source:
remote:
path: TinyLife/Relationship.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Parent
path: ../TinyLife/Relationship.cs
startLine: 560
startLine: 377
assemblies:
- Tiny Life
namespace: TinyLife
summary: A genealogy type that represents a parent of a <xref href="TinyLife.GenealogyType.Child" data-throw-if-not-resolved="false"></xref>
summary: "\nA genealogy type that represents a parent of a <xref href=\"TinyLife.GenealogyType.Child\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
syntax:
content: Parent = 1
return:
type: TinyLife.GenealogyType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GenealogyType.Child
commentId: F:TinyLife.GenealogyType.Child
id: Child
@ -116,20 +131,26 @@ items:
source:
remote:
path: TinyLife/Relationship.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Child
path: ../TinyLife/Relationship.cs
startLine: 564
startLine: 381
assemblies:
- Tiny Life
namespace: TinyLife
summary: A genealogy type that represents a child of a <xref href="TinyLife.GenealogyType.Parent" data-throw-if-not-resolved="false"></xref>
summary: "\nA genealogy type that represents a child of a <xref href=\"TinyLife.GenealogyType.Parent\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
syntax:
content: Child = 2
return:
type: TinyLife.GenealogyType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GenealogyType.Sibling
commentId: F:TinyLife.GenealogyType.Sibling
id: Sibling
@ -144,20 +165,26 @@ items:
source:
remote:
path: TinyLife/Relationship.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Sibling
path: ../TinyLife/Relationship.cs
startLine: 568
startLine: 385
assemblies:
- Tiny Life
namespace: TinyLife
summary: A genealogy type that represents a sibling
summary: "\nA genealogy type that represents a sibling\n"
example: []
syntax:
content: Sibling = 3
return:
type: TinyLife.GenealogyType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GenealogyType.Nibling
commentId: F:TinyLife.GenealogyType.Nibling
id: Nibling
@ -172,20 +199,26 @@ items:
source:
remote:
path: TinyLife/Relationship.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Nibling
path: ../TinyLife/Relationship.cs
startLine: 572
startLine: 389
assemblies:
- Tiny Life
namespace: TinyLife
summary: A genealogy type that represents a nibling (niece or nephew) of a <xref href="TinyLife.GenealogyType.Pibling" data-throw-if-not-resolved="false"></xref>
summary: "\nA genealogy type that represents a nibling (niece or nephew) of a <xref href=\"TinyLife.GenealogyType.Pibling\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
syntax:
content: Nibling = 4
return:
type: TinyLife.GenealogyType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GenealogyType.Pibling
commentId: F:TinyLife.GenealogyType.Pibling
id: Pibling
@ -200,20 +233,26 @@ items:
source:
remote:
path: TinyLife/Relationship.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Pibling
path: ../TinyLife/Relationship.cs
startLine: 576
startLine: 393
assemblies:
- Tiny Life
namespace: TinyLife
summary: A genealogy type that represents a pibling (aunt or uncle) or a <xref href="TinyLife.GenealogyType.Nibling" data-throw-if-not-resolved="false"></xref>
summary: "\nA genealogy type that represents a pibling (aunt or uncle) or a <xref href=\"TinyLife.GenealogyType.Nibling\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
syntax:
content: Pibling = 5
return:
type: TinyLife.GenealogyType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GenealogyType.Grandparent
commentId: F:TinyLife.GenealogyType.Grandparent
id: Grandparent
@ -228,20 +267,26 @@ items:
source:
remote:
path: TinyLife/Relationship.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Grandparent
path: ../TinyLife/Relationship.cs
startLine: 580
startLine: 397
assemblies:
- Tiny Life
namespace: TinyLife
summary: A genealogy type that represents a grandparent of a <xref href="TinyLife.GenealogyType.Grandchild" data-throw-if-not-resolved="false"></xref>
summary: "\nA genealogy type that represents a grandparent of a <xref href=\"TinyLife.GenealogyType.Grandchild\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
syntax:
content: Grandparent = 6
return:
type: TinyLife.GenealogyType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GenealogyType.Grandchild
commentId: F:TinyLife.GenealogyType.Grandchild
id: Grandchild
@ -256,20 +301,26 @@ items:
source:
remote:
path: TinyLife/Relationship.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Grandchild
path: ../TinyLife/Relationship.cs
startLine: 584
startLine: 401
assemblies:
- Tiny Life
namespace: TinyLife
summary: A genealogy type that represents a grandchild of a <xref href="TinyLife.GenealogyType.Grandparent" data-throw-if-not-resolved="false"></xref>
summary: "\nA genealogy type that represents a grandchild of a <xref href=\"TinyLife.GenealogyType.Grandparent\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
syntax:
content: Grandchild = 7
return:
type: TinyLife.GenealogyType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GenealogyType.Cousin
commentId: F:TinyLife.GenealogyType.Cousin
id: Cousin
@ -284,20 +335,26 @@ items:
source:
remote:
path: TinyLife/Relationship.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Cousin
path: ../TinyLife/Relationship.cs
startLine: 588
startLine: 405
assemblies:
- Tiny Life
namespace: TinyLife
summary: A genealogy type that represents a cousin.
summary: "\nA genealogy type that represents a cousin.\n"
example: []
syntax:
content: Cousin = 8
return:
type: TinyLife.GenealogyType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.GenealogyType.DistantlyRelated
commentId: F:TinyLife.GenealogyType.DistantlyRelated
id: DistantlyRelated
@ -312,275 +369,175 @@ items:
source:
remote:
path: TinyLife/Relationship.cs
branch: main
branch: 0.29.3-dev
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DistantlyRelated
path: ../TinyLife/Relationship.cs
startLine: 592
startLine: 409
assemblies:
- Tiny Life
namespace: TinyLife
summary: A genealogy type that represents that two people are related, but not in any way listed above.
summary: "\nA genealogy type that represents that two people are related, but not in any way listed above.\n"
example: []
syntax:
content: DistantlyRelated = 1000
return:
type: TinyLife.GenealogyType
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
references:
- uid: TinyLife.Relationship
commentId: T:TinyLife.Relationship
parent: TinyLife
href: TinyLife.Relationship.html
name: Relationship
nameWithType: Relationship
fullName: TinyLife.Relationship
- uid: TinyLife
commentId: N:TinyLife
href: TinyLife.html
name: TinyLife
nameWithType: TinyLife
fullName: TinyLife
- uid: TinyLife.GenealogyType.TinyLife.Utilities.Extensions.GetOpposite
commentId: M:TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetOpposite_TinyLife_GenealogyType_
name: GetOpposite(GenealogyType)
nameWithType: Extensions.GetOpposite(GenealogyType)
fullName: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
name: GetOpposite
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetOpposite_TinyLife_GenealogyType_
- name: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
name: GetOpposite
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetOpposite_TinyLife_GenealogyType_
- name: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: )
- uid: TinyLife.GenealogyType.TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType)
commentId: M:TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetTransitive_TinyLife_GenealogyType_TinyLife_GenealogyType_
name: GetTransitive(GenealogyType, GenealogyType)
nameWithType: Extensions.GetTransitive(GenealogyType, GenealogyType)
fullName: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType, TinyLife.GenealogyType)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
name: GetTransitive
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetTransitive_TinyLife_GenealogyType_TinyLife_GenealogyType_
- name: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: ','
- name: " "
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
name: GetTransitive
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetTransitive_TinyLife_GenealogyType_TinyLife_GenealogyType_
- name: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: ','
- name: " "
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: )
- uid: TinyLife.GenealogyType.TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.Objects.AgeGroup)
commentId: M:TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_IsAgeAppropriate_TinyLife_GenealogyType_TinyLife_Objects_AgeGroup_
name: IsAgeAppropriate(GenealogyType, AgeGroup)
nameWithType: Extensions.IsAgeAppropriate(GenealogyType, AgeGroup)
fullName: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType, TinyLife.Objects.AgeGroup)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
name: IsAgeAppropriate
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_IsAgeAppropriate_TinyLife_GenealogyType_TinyLife_Objects_AgeGroup_
- name: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: ','
- name: " "
- uid: TinyLife.Objects.AgeGroup
name: AgeGroup
href: TinyLife.Objects.AgeGroup.html
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
name: IsAgeAppropriate
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_IsAgeAppropriate_TinyLife_GenealogyType_TinyLife_Objects_AgeGroup_
- name: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: ','
- name: " "
- uid: TinyLife.Objects.AgeGroup
name: AgeGroup
href: TinyLife.Objects.AgeGroup.html
- name: )
- uid: TinyLife.GenealogyType.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<GenealogyType>(GenealogyType)
nameWithType: Extensions.JsonCopy<GenealogyType>(GenealogyType)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.GenealogyType>(TinyLife.GenealogyType)
nameWithType.vb: Extensions.JsonCopy(Of GenealogyType)(GenealogyType)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.GenealogyType)(TinyLife.GenealogyType)
name.vb: JsonCopy(Of GenealogyType)(GenealogyType)
name: JsonCopy<GenealogyType>()
nameWithType: Extensions.JsonCopy<GenealogyType>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.GenealogyType>()
nameWithType.vb: Extensions.JsonCopy(Of GenealogyType)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.GenealogyType)()
name.vb: JsonCopy(Of GenealogyType)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.GenealogyType)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: '>'
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<GenealogyType>
nameWithType: Extensions.JsonCopy<GenealogyType>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.GenealogyType>
- name: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.GenealogyType)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of GenealogyType)
nameWithType: Extensions.JsonCopy(Of GenealogyType)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.GenealogyType)
- name: (
- name: Of
- name: " "
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
nameWithType: (
fullName: (
- name: )
- name: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: )
- uid: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
nameWithType: )
fullName: )
- uid: TinyLife.GenealogyType.TinyLife.Utilities.Extensions.GetOpposite
commentId: M:TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetOpposite_TinyLife_GenealogyType_
name: GetOpposite(GenealogyType)
nameWithType: Extensions.GetOpposite(GenealogyType)
fullName: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
name: GetOpposite()
nameWithType: Extensions.GetOpposite()
fullName: TinyLife.Utilities.Extensions.GetOpposite()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
- uid: TinyLife.Utilities.Extensions.GetOpposite
name: GetOpposite
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetOpposite_TinyLife_GenealogyType_
nameWithType: Extensions.GetOpposite
fullName: TinyLife.Utilities.Extensions.GetOpposite
- name: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
- uid: TinyLife.Utilities.Extensions.GetOpposite
name: GetOpposite
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetOpposite_TinyLife_GenealogyType_
nameWithType: Extensions.GetOpposite
fullName: TinyLife.Utilities.Extensions.GetOpposite
- name: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
nameWithType: (
fullName: (
- 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.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
nameWithType: )
fullName: )
- uid: TinyLife.GenealogyType.TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType)
commentId: M:TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetTransitive_TinyLife_GenealogyType_TinyLife_GenealogyType_
name: GetTransitive(GenealogyType, GenealogyType)
nameWithType: Extensions.GetTransitive(GenealogyType, GenealogyType)
fullName: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType, TinyLife.GenealogyType)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
name: GetTransitive(GenealogyType)
nameWithType: Extensions.GetTransitive(GenealogyType)
fullName: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
- uid: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType)
name: GetTransitive
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetTransitive_TinyLife_GenealogyType_TinyLife_GenealogyType_
nameWithType: Extensions.GetTransitive
fullName: TinyLife.Utilities.Extensions.GetTransitive
- name: (
nameWithType: (
fullName: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: ','
- name: " "
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
nameWithType: GenealogyType
fullName: TinyLife.GenealogyType
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
- uid: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType)
name: GetTransitive
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_GetTransitive_TinyLife_GenealogyType_TinyLife_GenealogyType_
nameWithType: Extensions.GetTransitive
fullName: TinyLife.Utilities.Extensions.GetTransitive
- name: (
nameWithType: (
fullName: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: ','
- name: " "
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
nameWithType: GenealogyType
fullName: TinyLife.GenealogyType
- name: )
- uid: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
nameWithType: )
fullName: )
- uid: TinyLife.GenealogyType.TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.Objects.AgeGroup)
commentId: M:TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_IsAgeAppropriate_TinyLife_GenealogyType_TinyLife_Objects_AgeGroup_
name: IsAgeAppropriate(GenealogyType, AgeGroup)
nameWithType: Extensions.IsAgeAppropriate(GenealogyType, AgeGroup)
fullName: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType, TinyLife.Objects.AgeGroup)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
name: IsAgeAppropriate(AgeGroup)
nameWithType: Extensions.IsAgeAppropriate(AgeGroup)
fullName: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.Objects.AgeGroup)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
- uid: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.Objects.AgeGroup)
name: IsAgeAppropriate
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_IsAgeAppropriate_TinyLife_GenealogyType_TinyLife_Objects_AgeGroup_
nameWithType: Extensions.IsAgeAppropriate
fullName: TinyLife.Utilities.Extensions.IsAgeAppropriate
- name: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: ','
- name: " "
nameWithType: (
fullName: (
- uid: TinyLife.Objects.AgeGroup
name: AgeGroup
href: TinyLife.Objects.AgeGroup.html
nameWithType: AgeGroup
fullName: TinyLife.Objects.AgeGroup
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
- uid: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.Objects.AgeGroup)
name: IsAgeAppropriate
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_IsAgeAppropriate_TinyLife_GenealogyType_TinyLife_Objects_AgeGroup_
nameWithType: Extensions.IsAgeAppropriate
fullName: TinyLife.Utilities.Extensions.IsAgeAppropriate
- name: (
- uid: TinyLife.GenealogyType
name: GenealogyType
href: TinyLife.GenealogyType.html
- name: ','
- name: " "
nameWithType: (
fullName: (
- uid: TinyLife.Objects.AgeGroup
name: AgeGroup
href: TinyLife.Objects.AgeGroup.html
nameWithType: AgeGroup
fullName: TinyLife.Objects.AgeGroup
- name: )
nameWithType: )
fullName: )
- 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)
@ -589,88 +546,197 @@ references:
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: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
name: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
- name: Of
- name: " "
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
commentId: M:TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
name: GetOpposite(GenealogyType)
nameWithType: Extensions.GetOpposite(GenealogyType)
fullName: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
name: GetOpposite
nameWithType: Extensions.GetOpposite
fullName: TinyLife.Utilities.Extensions.GetOpposite
- name: (
- name: T
nameWithType: (
fullName: (
- uid: TinyLife.GenealogyType
name: GenealogyType
nameWithType: GenealogyType
fullName: TinyLife.GenealogyType
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.GetOpposite(TinyLife.GenealogyType)
name: GetOpposite
nameWithType: Extensions.GetOpposite
fullName: TinyLife.Utilities.Extensions.GetOpposite
- name: (
nameWithType: (
fullName: (
- uid: TinyLife.GenealogyType
name: GenealogyType
nameWithType: GenealogyType
fullName: TinyLife.GenealogyType
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
commentId: M:TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
name: GetTransitive(GenealogyType, GenealogyType)
nameWithType: Extensions.GetTransitive(GenealogyType, GenealogyType)
fullName: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType, TinyLife.GenealogyType)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
name: GetTransitive
nameWithType: Extensions.GetTransitive
fullName: TinyLife.Utilities.Extensions.GetTransitive
- name: (
nameWithType: (
fullName: (
- uid: TinyLife.GenealogyType
name: GenealogyType
nameWithType: GenealogyType
fullName: TinyLife.GenealogyType
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: TinyLife.GenealogyType
name: GenealogyType
nameWithType: GenealogyType
fullName: TinyLife.GenealogyType
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.GetTransitive(TinyLife.GenealogyType,TinyLife.GenealogyType)
name: GetTransitive
nameWithType: Extensions.GetTransitive
fullName: TinyLife.Utilities.Extensions.GetTransitive
- name: (
nameWithType: (
fullName: (
- uid: TinyLife.GenealogyType
name: GenealogyType
nameWithType: GenealogyType
fullName: TinyLife.GenealogyType
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: TinyLife.GenealogyType
name: GenealogyType
nameWithType: GenealogyType
fullName: TinyLife.GenealogyType
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
commentId: M:TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
name: IsAgeAppropriate(GenealogyType, AgeGroup)
nameWithType: Extensions.IsAgeAppropriate(GenealogyType, AgeGroup)
fullName: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType, TinyLife.Objects.AgeGroup)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
name: IsAgeAppropriate
nameWithType: Extensions.IsAgeAppropriate
fullName: TinyLife.Utilities.Extensions.IsAgeAppropriate
- name: (
nameWithType: (
fullName: (
- uid: TinyLife.GenealogyType
name: GenealogyType
nameWithType: GenealogyType
fullName: TinyLife.GenealogyType
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: TinyLife.Objects.AgeGroup
name: AgeGroup
nameWithType: AgeGroup
fullName: TinyLife.Objects.AgeGroup
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.IsAgeAppropriate(TinyLife.GenealogyType,TinyLife.Objects.AgeGroup)
name: IsAgeAppropriate
nameWithType: Extensions.IsAgeAppropriate
fullName: TinyLife.Utilities.Extensions.IsAgeAppropriate
- name: (
nameWithType: (
fullName: (
- uid: TinyLife.GenealogyType
name: GenealogyType
nameWithType: GenealogyType
fullName: TinyLife.GenealogyType
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: TinyLife.Objects.AgeGroup
name: AgeGroup
nameWithType: AgeGroup
fullName: TinyLife.Objects.AgeGroup
- name: )
nameWithType: )
fullName: )
- 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: TinyLife.GenealogyType
commentId: T:TinyLife.GenealogyType
parent: TinyLife
href: TinyLife.GenealogyType.html
name: GenealogyType
nameWithType: GenealogyType
fullName: TinyLife.GenealogyType
- uid: TinyLife.GenealogyType.Child
commentId: F:TinyLife.GenealogyType.Child
href: TinyLife.GenealogyType.html#TinyLife_GenealogyType_Child
name: Child
nameWithType: GenealogyType.Child
fullName: TinyLife.GenealogyType.Child
isExternal: true
- uid: TinyLife.GenealogyType.Parent
commentId: F:TinyLife.GenealogyType.Parent
href: TinyLife.GenealogyType.html#TinyLife_GenealogyType_Parent
name: Parent
nameWithType: GenealogyType.Parent
fullName: TinyLife.GenealogyType.Parent
isExternal: true
- uid: TinyLife.GenealogyType.Pibling
commentId: F:TinyLife.GenealogyType.Pibling
href: TinyLife.GenealogyType.html#TinyLife_GenealogyType_Pibling
name: Pibling
nameWithType: GenealogyType.Pibling
fullName: TinyLife.GenealogyType.Pibling
isExternal: true
- uid: TinyLife.GenealogyType.Nibling
commentId: F:TinyLife.GenealogyType.Nibling
href: TinyLife.GenealogyType.html#TinyLife_GenealogyType_Nibling
name: Nibling
nameWithType: GenealogyType.Nibling
fullName: TinyLife.GenealogyType.Nibling
isExternal: true
- uid: TinyLife.GenealogyType.Grandchild
commentId: F:TinyLife.GenealogyType.Grandchild
href: TinyLife.GenealogyType.html#TinyLife_GenealogyType_Grandchild
name: Grandchild
nameWithType: GenealogyType.Grandchild
fullName: TinyLife.GenealogyType.Grandchild
isExternal: true
- uid: TinyLife.GenealogyType.Grandparent
commentId: F:TinyLife.GenealogyType.Grandparent
href: TinyLife.GenealogyType.html#TinyLife_GenealogyType_Grandparent
name: Grandparent
nameWithType: GenealogyType.Grandparent
fullName: TinyLife.GenealogyType.Grandparent
isExternal: true

Some files were not shown because too many files have changed in this diff Show more