TinyLifeWeb/docs/api/TinyLife.Actions.Behaviors.ReadBehavior.yml

1426 lines
55 KiB
YAML
Raw Permalink Normal View History

2022-09-05 14:19:42 +02:00
### YamlMime:ManagedReference
items:
- uid: TinyLife.Actions.Behaviors.ReadBehavior
commentId: T:TinyLife.Actions.Behaviors.ReadBehavior
id: ReadBehavior
parent: TinyLife.Actions.Behaviors
children:
2022-09-17 12:33:21 +02:00
- TinyLife.Actions.Behaviors.ReadBehavior.#ctor(TinyLife.Actions.Action,System.Func{TinyLife.Objects.FurnitureType},System.Int32[],System.Func{TinyLife.Objects.Furniture,System.Boolean})
2022-09-05 14:19:42 +02:00
- TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask(TinyLife.Actions.Action)
- TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress
- TinyLife.Actions.Behaviors.ReadBehavior.Initialize
2023-06-25 15:41:49 +02:00
- TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.Behaviors.ReadBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2022-09-05 14:19:42 +02:00
langs:
- csharp
- vb
name: ReadBehavior
nameWithType: ReadBehavior
fullName: TinyLife.Actions.Behaviors.ReadBehavior
type: Class
source:
remote:
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-09-05 14:19:42 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ReadBehavior
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-07-20 14:27:20 +02:00
startLine: 11
2022-09-05 14:19:42 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
summary: >-
An action behavior that is used for any kind of action that involves reading a book or other type of media.
A <xref href="TinyLife.Actions.BehaviorAction%601" data-throw-if-not-resolved="false"></xref> using this behavior will cause the <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref> to sit down after using the underlying <xref href="TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior" data-throw-if-not-resolved="false"></xref> behavior to pick up or spawn the book.
2022-09-05 14:19:42 +02:00
example: []
syntax:
content: 'public class ReadBehavior : PickUpOrSpawnBehavior'
2023-03-30 18:07:55 +02:00
content.vb: Public Class ReadBehavior Inherits PickUpOrSpawnBehavior
2022-09-05 14:19:42 +02:00
inheritance:
- System.Object
- TinyLife.Actions.Behaviors.ActionBehavior
- TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior
inheritedMembers:
- TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.CreateFirstActions
- TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType)
- TinyLife.Actions.Behaviors.ActionBehavior.Action
2022-12-20 13:25:03 +01:00
- TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
2022-09-05 14:19:42 +02:00
- TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
2022-12-20 13:25:03 +01:00
- TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
2022-09-05 14:19:42 +02:00
- 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.Behaviors.ReadBehavior.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress
commentId: P:TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress
id: FullyInProgress
parent: TinyLife.Actions.Behaviors.ReadBehavior
langs:
- csharp
- vb
name: FullyInProgress
nameWithType: ReadBehavior.FullyInProgress
fullName: TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress
type: Property
source:
remote:
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-09-05 14:19:42 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FullyInProgress
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-07-20 14:27:20 +02:00
startLine: 14
2022-09-05 14:19:42 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
summary: >-
Returns whether this action behavior is fully in progress.
This is the action behavior version of <xref href="TinyLife.Actions.Action.FullyInProgress" data-throw-if-not-resolved="false"></xref>.
2022-09-05 14:19:42 +02:00
example: []
syntax:
content: public override bool FullyInProgress { get; }
parameters: []
return:
type: System.Boolean
content.vb: Public Overrides ReadOnly Property FullyInProgress As Boolean
overridden: TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
overload: TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress*
2022-09-17 12:33:21 +02:00
- uid: TinyLife.Actions.Behaviors.ReadBehavior.#ctor(TinyLife.Actions.Action,System.Func{TinyLife.Objects.FurnitureType},System.Int32[],System.Func{TinyLife.Objects.Furniture,System.Boolean})
commentId: M:TinyLife.Actions.Behaviors.ReadBehavior.#ctor(TinyLife.Actions.Action,System.Func{TinyLife.Objects.FurnitureType},System.Int32[],System.Func{TinyLife.Objects.Furniture,System.Boolean})
id: '#ctor(TinyLife.Actions.Action,System.Func{TinyLife.Objects.FurnitureType},System.Int32[],System.Func{TinyLife.Objects.Furniture,System.Boolean})'
2022-09-05 14:19:42 +02:00
parent: TinyLife.Actions.Behaviors.ReadBehavior
langs:
- csharp
- vb
2023-03-30 18:07:55 +02:00
name: ReadBehavior(Action, Func<FurnitureType>, int[], Func<Furniture, bool>)
nameWithType: ReadBehavior.ReadBehavior(Action, Func<FurnitureType>, int[], Func<Furniture, bool>)
fullName: TinyLife.Actions.Behaviors.ReadBehavior.ReadBehavior(TinyLife.Actions.Action, System.Func<TinyLife.Objects.FurnitureType>, int[], System.Func<TinyLife.Objects.Furniture, bool>)
2022-09-05 14:19:42 +02:00
type: Constructor
source:
remote:
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-09-05 14:19:42 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-07-20 14:27:20 +02:00
startLine: 20
2022-09-05 14:19:42 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
summary: Creates a new pick up or spawn behavior with the given settings.
2022-09-05 14:19:42 +02:00
example: []
syntax:
2022-09-17 12:33:21 +02:00
content: public ReadBehavior(Action action, Func<FurnitureType> itemToSpawn, int[] colorsToSpawn = null, Func<Furniture, bool> isValid = null)
2022-09-05 14:19:42 +02:00
parameters:
- id: action
type: TinyLife.Actions.Action
description: The action.
- id: itemToSpawn
2022-09-17 12:33:21 +02:00
type: System.Func{TinyLife.Objects.FurnitureType}
2022-09-05 14:19:42 +02:00
description: The item to spawn, or pick up.
- id: colorsToSpawn
type: System.Int32[]
description: The colors to spawn.
- id: isValid
type: System.Func{TinyLife.Objects.Furniture,System.Boolean}
2024-01-07 16:53:47 +01:00
description: Whether the item that we're trying to pick up is valid. If this is null, the item is checked against the <code class="paramref">itemToSpawn</code>.
2022-09-17 12:33:21 +02:00
content.vb: Public Sub New(action As Action, itemToSpawn As Func(Of FurnitureType), colorsToSpawn As Integer() = Nothing, isValid As Func(Of Furniture, Boolean) = Nothing)
2022-09-05 14:19:42 +02:00
overload: TinyLife.Actions.Behaviors.ReadBehavior.#ctor*
exceptions:
- type: System.ArgumentNullException
commentId: T:System.ArgumentNullException
2024-01-07 16:53:47 +01:00
description: Thrown if the <code class="paramref">itemToSpawn</code> is null.
2023-03-30 18:07:55 +02:00
nameWithType.vb: ReadBehavior.New(Action, Func(Of FurnitureType), Integer(), Func(Of Furniture, Boolean))
fullName.vb: TinyLife.Actions.Behaviors.ReadBehavior.New(TinyLife.Actions.Action, System.Func(Of TinyLife.Objects.FurnitureType), Integer(), System.Func(Of TinyLife.Objects.Furniture, Boolean))
name.vb: New(Action, Func(Of FurnitureType), Integer(), Func(Of Furniture, Boolean))
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Behaviors.ReadBehavior.Initialize
commentId: M:TinyLife.Actions.Behaviors.ReadBehavior.Initialize
id: Initialize
parent: TinyLife.Actions.Behaviors.ReadBehavior
langs:
- csharp
- vb
name: Initialize()
nameWithType: ReadBehavior.Initialize()
fullName: TinyLife.Actions.Behaviors.ReadBehavior.Initialize()
type: Method
source:
remote:
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-09-05 14:19:42 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Initialize
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-07-20 14:27:20 +02:00
startLine: 23
2022-09-05 14:19:42 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
summary: >-
Initializes this action behavior.
This method is automatically called when using <xref href="TinyLife.Actions.BehaviorAction" data-throw-if-not-resolved="false"></xref> in <xref href="TinyLife.Actions.MultiAction.AndThenInitialize" data-throw-if-not-resolved="false"></xref>.
2022-09-05 14:19:42 +02:00
example: []
syntax:
content: public override void Initialize()
2023-03-30 18:07:55 +02:00
content.vb: Public Overrides Sub Initialize()
2022-09-05 14:19:42 +02:00
overridden: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
overload: TinyLife.Actions.Behaviors.ReadBehavior.Initialize*
2023-06-25 15:41:49 +02:00
- uid: TinyLife.Actions.Behaviors.ReadBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.Behaviors.ReadBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
id: Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.Behaviors.ReadBehavior
langs:
- csharp
- vb
name: Update(GameTime, TimeSpan, float)
nameWithType: ReadBehavior.Update(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.Behaviors.ReadBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
type: Method
source:
remote:
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2023-06-25 15:41:49 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Update
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-07-20 14:27:20 +02:00
startLine: 34
2023-06-25 15:41:49 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
summary: >-
Updates this action behavior every update frame.
This method is automatically called when using <xref href="TinyLife.Actions.BehaviorAction" data-throw-if-not-resolved="false"></xref> in <xref href="TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)" data-throw-if-not-resolved="false"></xref>.
2023-06-25 15:41:49 +02:00
example: []
syntax:
content: public override void Update(GameTime time, TimeSpan passedInGame, float speedMultiplier)
parameters:
- id: time
type: Microsoft.Xna.Framework.GameTime
description: The game time
- id: passedInGame
type: System.TimeSpan
description: The amount of time that has passed since the last update frame
- id: speedMultiplier
type: System.Single
description: The game speed multiplier, which represents how fast things should happen, which is usually determined by <xref href="TinyLife.GameImpl.Speed" data-throw-if-not-resolved="false"></xref>
content.vb: Public Overrides Sub Update(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single)
overridden: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
overload: TinyLife.Actions.Behaviors.ReadBehavior.Update*
nameWithType.vb: ReadBehavior.Update(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.Behaviors.ReadBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: Update(GameTime, TimeSpan, Single)
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask(TinyLife.Actions.Action)
commentId: M:TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask(TinyLife.Actions.Action)
id: CanMultitask(TinyLife.Actions.Action)
parent: TinyLife.Actions.Behaviors.ReadBehavior
langs:
- csharp
- vb
name: CanMultitask(Action)
nameWithType: ReadBehavior.CanMultitask(Action)
fullName: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask(TinyLife.Actions.Action)
type: Method
source:
remote:
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-09-05 14:19:42 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CanMultitask
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-07-20 14:27:20 +02:00
startLine: 44
2022-09-05 14:19:42 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
summary: >-
Return true on this method if this action can be multi-tasked along with the passed <xref href="TinyLife.Actions.Behaviors.ActionBehavior.Action" data-throw-if-not-resolved="false"></xref>.
A multi-tasking is an action that is currently active along with another action.
By default, multi-tasking is disallowed for any action.
2022-09-05 14:19:42 +02:00
example: []
syntax:
content: public override bool CanMultitask(Action other)
parameters:
- id: other
type: TinyLife.Actions.Action
description: The action to multi-task with
return:
type: System.Boolean
description: Whether this action can be multi-tasked
content.vb: Public Overrides Function CanMultitask(other As Action) As Boolean
overridden: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
overload: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask*
2023-06-25 15:41:49 +02:00
- uid: TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted(TinyLife.Actions.CompletionType)
id: OnCompleted(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.Behaviors.ReadBehavior
langs:
- csharp
- vb
name: OnCompleted(CompletionType)
nameWithType: ReadBehavior.OnCompleted(CompletionType)
fullName: TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted(TinyLife.Actions.CompletionType)
type: Method
source:
remote:
path: TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2023-06-25 15:41:49 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnCompleted
path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs
2023-07-20 14:27:20 +02:00
startLine: 49
2023-06-25 15:41:49 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
summary: >-
Causes any activities that this action behavior executes to be marked as completed.
This method is automatically called when using <xref href="TinyLife.Actions.BehaviorAction" data-throw-if-not-resolved="false"></xref> in <xref href="TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)" data-throw-if-not-resolved="false"></xref>.
2023-06-25 15:41:49 +02:00
example: []
syntax:
content: public override void OnCompleted(CompletionType completion)
parameters:
- id: completion
type: TinyLife.Actions.CompletionType
description: ''
content.vb: Public Overrides Sub OnCompleted(completion As CompletionType)
overridden: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
overload: TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted*
2022-09-05 14:19:42 +02:00
references:
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.BehaviorAction`1
commentId: T:TinyLife.Actions.BehaviorAction`1
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.BehaviorAction-1.html
2022-12-20 13:25:03 +01:00
name: BehaviorAction<T>
nameWithType: BehaviorAction<T>
fullName: TinyLife.Actions.BehaviorAction<T>
nameWithType.vb: BehaviorAction(Of T)
fullName.vb: TinyLife.Actions.BehaviorAction(Of T)
name.vb: BehaviorAction(Of T)
2022-09-05 14:19:42 +02:00
spec.csharp:
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.BehaviorAction`1
name: BehaviorAction
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.BehaviorAction-1.html
2022-09-05 14:19:42 +02:00
- name: <
- name: T
- name: '>'
spec.vb:
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.BehaviorAction`1
name: BehaviorAction
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.BehaviorAction-1.html
2023-03-30 18:07:55 +02:00
- name: (
- name: Of
- name: " "
2022-09-05 14:19:42 +02:00
- name: T
- name: )
- uid: TinyLife.Objects.Person
commentId: T:TinyLife.Objects.Person
parent: TinyLife.Objects
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.Person.html
2022-09-05 14:19:42 +02:00
name: Person
nameWithType: Person
fullName: TinyLife.Objects.Person
- uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior
commentId: T:TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior
parent: TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.html
2022-09-05 14:19:42 +02:00
name: PickUpOrSpawnBehavior
nameWithType: PickUpOrSpawnBehavior
fullName: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior
- uid: TinyLife.Actions.Behaviors
commentId: N:TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2022-09-05 14:19:42 +02:00
name: TinyLife.Actions.Behaviors
nameWithType: TinyLife.Actions.Behaviors
fullName: TinyLife.Actions.Behaviors
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Actions
name: Actions
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Actions.Behaviors
name: Behaviors
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.html
2023-03-30 18:07:55 +02:00
spec.vb:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Actions
name: Actions
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Actions.Behaviors
name: Behaviors
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.html
2022-09-05 14:19:42 +02:00
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior
commentId: T:TinyLife.Actions.Behaviors.ActionBehavior
parent: TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html
2022-09-05 14:19:42 +02:00
name: ActionBehavior
nameWithType: ActionBehavior
fullName: TinyLife.Actions.Behaviors.ActionBehavior
- uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.CreateFirstActions
commentId: M:TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.CreateFirstActions
parent: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.html#TinyLife_Actions_Behaviors_PickUpOrSpawnBehavior_CreateFirstActions
2022-09-05 14:19:42 +02:00
name: CreateFirstActions()
nameWithType: PickUpOrSpawnBehavior.CreateFirstActions()
fullName: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.CreateFirstActions()
spec.csharp:
- uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.CreateFirstActions
name: CreateFirstActions
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.html#TinyLife_Actions_Behaviors_PickUpOrSpawnBehavior_CreateFirstActions
2022-09-05 14:19:42 +02:00
- name: (
- name: )
spec.vb:
- uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.CreateFirstActions
name: CreateFirstActions
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.html#TinyLife_Actions_Behaviors_PickUpOrSpawnBehavior_CreateFirstActions
2022-09-05 14:19:42 +02:00
- name: (
- name: )
- uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.html#TinyLife_Actions_Behaviors_PickUpOrSpawnBehavior_GetNextAction_TinyLife_Actions_CompletionType_
2022-09-05 14:19:42 +02:00
name: GetNextAction(CompletionType)
nameWithType: PickUpOrSpawnBehavior.GetNextAction(CompletionType)
fullName: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType)
spec.csharp:
- uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType)
name: GetNextAction
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.html#TinyLife_Actions_Behaviors_PickUpOrSpawnBehavior_GetNextAction_TinyLife_Actions_CompletionType_
2022-09-05 14:19:42 +02:00
- name: (
- uid: TinyLife.Actions.CompletionType
name: CompletionType
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.CompletionType.html
2022-09-05 14:19:42 +02:00
- name: )
spec.vb:
- uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType)
name: GetNextAction
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.html#TinyLife_Actions_Behaviors_PickUpOrSpawnBehavior_GetNextAction_TinyLife_Actions_CompletionType_
2022-09-05 14:19:42 +02:00
- name: (
- uid: TinyLife.Actions.CompletionType
name: CompletionType
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.CompletionType.html
2022-09-05 14:19:42 +02:00
- name: )
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Action
commentId: F:TinyLife.Actions.Behaviors.ActionBehavior.Action
parent: TinyLife.Actions.Behaviors.ActionBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Action
2022-12-20 13:25:03 +01:00
name: Action
nameWithType: ActionBehavior.Action
fullName: TinyLife.Actions.Behaviors.ActionBehavior.Action
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
parent: TinyLife.Actions.Behaviors.ActionBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateLastActions
2022-09-05 14:19:42 +02:00
name: CreateLastActions()
2022-12-20 13:25:03 +01:00
nameWithType: ActionBehavior.CreateLastActions()
fullName: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions()
2022-09-05 14:19:42 +02:00
spec.csharp:
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
2022-09-05 14:19:42 +02:00
name: CreateLastActions
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateLastActions
2022-09-05 14:19:42 +02:00
- name: (
- name: )
spec.vb:
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
2022-09-05 14:19:42 +02:00
name: CreateLastActions
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateLastActions
2022-09-05 14:19:42 +02:00
- name: (
- name: )
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
parent: TinyLife.Actions.Behaviors.ActionBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_GetIconObject
2022-09-05 14:19:42 +02:00
name: GetIconObject()
nameWithType: ActionBehavior.GetIconObject()
fullName: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject()
spec.csharp:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
name: GetIconObject
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_GetIconObject
2022-09-05 14:19:42 +02:00
- name: (
- name: )
spec.vb:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
name: GetIconObject
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_GetIconObject
2022-09-05 14:19:42 +02:00
- name: (
- name: )
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
2022-09-05 14:19:42 +02:00
parent: TinyLife.Actions.Behaviors.ActionBehavior
2022-12-20 13:25:03 +01:00
isExternal: true
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateDefaultInstance_System_Type_TinyLife_Actions_Action_
2022-12-20 13:25:03 +01:00
name: CreateDefaultInstance(Type, Action)
nameWithType: ActionBehavior.CreateDefaultInstance(Type, Action)
fullName: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type, TinyLife.Actions.Action)
2022-09-05 14:19:42 +02:00
spec.csharp:
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
name: CreateDefaultInstance
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateDefaultInstance_System_Type_TinyLife_Actions_Action_
2022-09-05 14:19:42 +02:00
- name: (
2022-12-20 13:25:03 +01:00
- uid: System.Type
name: Type
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Action
name: Action
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Action.html
2022-09-05 14:19:42 +02:00
- name: )
spec.vb:
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
name: CreateDefaultInstance
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateDefaultInstance_System_Type_TinyLife_Actions_Action_
2022-09-05 14:19:42 +02:00
- name: (
2022-12-20 13:25:03 +01:00
- uid: System.Type
name: Type
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.type
- name: ','
- name: " "
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Action
name: Action
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Action.html
2022-09-05 14:19:42 +02:00
- name: )
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
2022-09-05 14:19:42 +02:00
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2022-09-05 14:19:42 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-09-05 14:19:42 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-09-05 14:19:42 +02:00
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2022-09-05 14:19:42 +02:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-09-05 14:19:42 +02:00
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
2022-09-05 14:19:42 +02:00
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2022-09-05 14:19:42 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-09-05 14:19:42 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2022-09-05 14:19:42 +02:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-09-05 14:19:42 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-09-05 14:19:42 +02:00
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2022-09-05 14:19:42 +02:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2022-09-05 14:19:42 +02:00
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-09-05 14:19:42 +02:00
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2022-09-05 14:19:42 +02:00
name: GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
2022-09-05 14:19:42 +02:00
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2022-09-05 14:19:42 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2022-09-05 14:19:42 +02:00
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2022-09-05 14:19:42 +02:00
name: GetType()
2023-03-30 18:07:55 +02:00
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
2022-09-05 14:19:42 +02:00
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2022-09-05 14:19:42 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2022-09-05 14:19:42 +02:00
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-09-05 14:19:42 +02:00
name: MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
2022-09-05 14:19:42 +02:00
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-09-05 14:19:42 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-09-05 14:19:42 +02:00
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
2022-09-05 14:19:42 +02:00
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2022-09-05 14:19:42 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-09-05 14:19:42 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2022-09-05 14:19:42 +02:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2022-09-05 14:19:42 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-09-05 14:19:42 +02:00
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2022-09-05 14:19:42 +02:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2022-09-05 14:19:42 +02:00
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2022-09-05 14:19:42 +02:00
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2022-09-05 14:19:42 +02:00
name: ToString()
2023-03-30 18:07:55 +02:00
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
2022-09-05 14:19:42 +02:00
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2022-09-05 14:19:42 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2022-09-05 14:19:42 +02:00
- name: (
- name: )
- uid: TinyLife.Actions.Behaviors.ReadBehavior.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
name: JsonCopy<ReadBehavior>(ReadBehavior)
nameWithType: Extensions.JsonCopy<ReadBehavior>(ReadBehavior)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.Behaviors.ReadBehavior>(TinyLife.Actions.Behaviors.ReadBehavior)
nameWithType.vb: Extensions.JsonCopy(Of ReadBehavior)(ReadBehavior)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.Behaviors.ReadBehavior)(TinyLife.Actions.Behaviors.ReadBehavior)
name.vb: JsonCopy(Of ReadBehavior)(ReadBehavior)
2022-09-05 14:19:42 +02:00
spec.csharp:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Behaviors.ReadBehavior)
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: <
- uid: TinyLife.Actions.Behaviors.ReadBehavior
name: ReadBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ReadBehavior.html
2023-03-30 18:07:55 +02:00
- name: '>'
2022-09-05 14:19:42 +02:00
- name: (
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Actions.Behaviors.ReadBehavior
name: ReadBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ReadBehavior.html
2022-09-05 14:19:42 +02:00
- name: )
spec.vb:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Behaviors.ReadBehavior)
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.Behaviors.ReadBehavior
name: ReadBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ReadBehavior.html
2023-03-30 18:07:55 +02:00
- name: )
2022-09-05 14:19:42 +02:00
- name: (
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Actions.Behaviors.ReadBehavior
name: ReadBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ReadBehavior.html
2022-09-05 14:19:42 +02:00
- name: )
- uid: TinyLife.Objects
commentId: N:TinyLife.Objects
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2022-09-05 14:19:42 +02:00
name: TinyLife.Objects
nameWithType: TinyLife.Objects
fullName: TinyLife.Objects
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Objects
name: Objects
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.html
2023-03-30 18:07:55 +02:00
spec.vb:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Objects
name: Objects
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.html
2022-09-05 14:19:42 +02:00
- uid: System
commentId: N:System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2022-09-05 14:19:42 +02:00
name: System
nameWithType: System
fullName: System
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2022-09-05 14:19:42 +02:00
name: JsonCopy<T>(T)
nameWithType: Extensions.JsonCopy<T>(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb: JsonCopy(Of T)(T)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: <
- name: T
- name: '>'
2022-09-05 14:19:42 +02:00
- name: (
- name: T
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name: (
- name: Of
- name: " "
- name: T
- name: )
2022-09-05 14:19:42 +02:00
- name: (
- name: T
- name: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.Extensions.html
2022-09-05 14:19:42 +02:00
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2022-09-05 14:19:42 +02:00
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Utilities
name: Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb:
- uid: TinyLife
name: TinyLife
2024-01-07 16:53:47 +01:00
href: TinyLife.html
2023-03-30 18:07:55 +02:00
- name: .
- uid: TinyLife.Utilities
name: Utilities
2024-01-07 16:53:47 +01:00
href: TinyLife.Utilities.html
- uid: TinyLife.Actions.Action.FullyInProgress
commentId: P:TinyLife.Actions.Action.FullyInProgress
parent: TinyLife.Actions.Action
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_FullyInProgress
name: FullyInProgress
nameWithType: Action.FullyInProgress
fullName: TinyLife.Actions.Action.FullyInProgress
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
commentId: P:TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
parent: TinyLife.Actions.Behaviors.ActionBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_FullyInProgress
2022-09-05 14:19:42 +02:00
name: FullyInProgress
nameWithType: ActionBehavior.FullyInProgress
fullName: TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
- uid: TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress*
commentId: Overload:TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ReadBehavior.html#TinyLife_Actions_Behaviors_ReadBehavior_FullyInProgress
2022-09-05 14:19:42 +02:00
name: FullyInProgress
nameWithType: ReadBehavior.FullyInProgress
fullName: TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
2024-01-07 16:53:47 +01:00
- 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
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.ArgumentNullException
commentId: T:System.ArgumentNullException
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception
name: ArgumentNullException
nameWithType: ArgumentNullException
fullName: System.ArgumentNullException
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Behaviors.ReadBehavior.#ctor*
commentId: Overload:TinyLife.Actions.Behaviors.ReadBehavior.#ctor
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ReadBehavior.html#TinyLife_Actions_Behaviors_ReadBehavior__ctor_TinyLife_Actions_Action_System_Func_TinyLife_Objects_FurnitureType__System_Int32___System_Func_TinyLife_Objects_Furniture_System_Boolean__
2022-09-05 14:19:42 +02:00
name: ReadBehavior
nameWithType: ReadBehavior.ReadBehavior
fullName: TinyLife.Actions.Behaviors.ReadBehavior.ReadBehavior
2023-03-30 18:07:55 +02:00
nameWithType.vb: ReadBehavior.New
fullName.vb: TinyLife.Actions.Behaviors.ReadBehavior.New
name.vb: New
2022-09-17 12:33:21 +02:00
- uid: System.Func{TinyLife.Objects.FurnitureType}
commentId: T:System.Func{TinyLife.Objects.FurnitureType}
parent: System
definition: System.Func`1
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.func-1
2022-09-17 12:33:21 +02:00
name: Func<FurnitureType>
nameWithType: Func<FurnitureType>
fullName: System.Func<TinyLife.Objects.FurnitureType>
nameWithType.vb: Func(Of FurnitureType)
fullName.vb: System.Func(Of TinyLife.Objects.FurnitureType)
name.vb: Func(Of FurnitureType)
spec.csharp:
- uid: System.Func`1
name: Func
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.func-1
2022-09-17 12:33:21 +02:00
- name: <
- uid: TinyLife.Objects.FurnitureType
name: FurnitureType
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.FurnitureType.html
2022-09-17 12:33:21 +02:00
- name: '>'
spec.vb:
- uid: System.Func`1
name: Func
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.func-1
- name: (
- name: Of
- name: " "
2022-09-17 12:33:21 +02:00
- uid: TinyLife.Objects.FurnitureType
name: FurnitureType
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.FurnitureType.html
2022-09-17 12:33:21 +02:00
- name: )
2022-09-05 14:19:42 +02:00
- uid: System.Int32[]
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
name: int[]
nameWithType: int[]
fullName: int[]
nameWithType.vb: Integer()
fullName.vb: Integer()
name.vb: Integer()
2022-09-05 14:19:42 +02:00
spec.csharp:
- uid: System.Int32
2023-03-30 18:07:55 +02:00
name: int
2022-09-05 14:19:42 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '['
- name: ']'
2022-09-05 14:19:42 +02:00
spec.vb:
- uid: System.Int32
2023-03-30 18:07:55 +02:00
name: Integer
2022-09-05 14:19:42 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: (
- name: )
2022-09-05 14:19:42 +02:00
- uid: System.Func{TinyLife.Objects.Furniture,System.Boolean}
commentId: T:System.Func{TinyLife.Objects.Furniture,System.Boolean}
parent: System
definition: System.Func`2
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.func-2
name: Func<Furniture, bool>
nameWithType: Func<Furniture, bool>
fullName: System.Func<TinyLife.Objects.Furniture, bool>
2022-09-05 14:19:42 +02:00
nameWithType.vb: Func(Of Furniture, Boolean)
2023-03-30 18:07:55 +02:00
fullName.vb: System.Func(Of TinyLife.Objects.Furniture, Boolean)
2022-09-05 14:19:42 +02:00
name.vb: Func(Of Furniture, Boolean)
spec.csharp:
- uid: System.Func`2
name: Func
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.func-2
2022-09-05 14:19:42 +02:00
- name: <
- uid: TinyLife.Objects.Furniture
name: Furniture
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.Furniture.html
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-09-05 14:19:42 +02:00
- uid: System.Boolean
2023-03-30 18:07:55 +02:00
name: bool
2022-09-05 14:19:42 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.boolean
2022-09-05 14:19:42 +02:00
- name: '>'
spec.vb:
- uid: System.Func`2
name: Func
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: (
- name: Of
- name: " "
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Objects.Furniture
name: Furniture
2024-01-07 16:53:47 +01:00
href: TinyLife.Objects.Furniture.html
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-09-05 14:19:42 +02:00
- uid: System.Boolean
name: Boolean
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.boolean
2022-09-05 14:19:42 +02:00
- name: )
2022-09-17 12:33:21 +02:00
- uid: System.Func`1
commentId: T:System.Func`1
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.func-1
2022-09-17 12:33:21 +02:00
name: Func<TResult>
nameWithType: Func<TResult>
fullName: System.Func<TResult>
nameWithType.vb: Func(Of TResult)
fullName.vb: System.Func(Of TResult)
name.vb: Func(Of TResult)
spec.csharp:
- uid: System.Func`1
name: Func
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.func-1
2022-09-17 12:33:21 +02:00
- name: <
- name: TResult
- name: '>'
spec.vb:
- uid: System.Func`1
name: Func
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.func-1
- name: (
- name: Of
- name: " "
2022-09-17 12:33:21 +02:00
- name: TResult
- name: )
2022-09-05 14:19:42 +02:00
- uid: System.Func`2
commentId: T:System.Func`2
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.func-2
2022-09-05 14:19:42 +02:00
name: Func<T, TResult>
nameWithType: Func<T, TResult>
fullName: System.Func<T, TResult>
nameWithType.vb: Func(Of T, TResult)
fullName.vb: System.Func(Of T, TResult)
name.vb: Func(Of T, TResult)
spec.csharp:
- uid: System.Func`2
name: Func
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.func-2
2022-09-05 14:19:42 +02:00
- name: <
- name: T
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-09-05 14:19:42 +02:00
- name: TResult
- name: '>'
spec.vb:
- uid: System.Func`2
name: Func
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: (
- name: Of
- name: " "
2022-09-05 14:19:42 +02:00
- name: T
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2022-09-05 14:19:42 +02:00
- name: TResult
- name: )
2024-01-07 16:53:47 +01:00
- 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.MultiAction.AndThenInitialize
commentId: M:TinyLife.Actions.MultiAction.AndThenInitialize
parent: TinyLife.Actions.MultiAction
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenInitialize
name: AndThenInitialize()
nameWithType: MultiAction.AndThenInitialize()
fullName: TinyLife.Actions.MultiAction.AndThenInitialize()
spec.csharp:
- uid: TinyLife.Actions.MultiAction.AndThenInitialize
name: AndThenInitialize
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenInitialize
- name: (
- name: )
spec.vb:
- uid: TinyLife.Actions.MultiAction.AndThenInitialize
name: AndThenInitialize
href: TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenInitialize
- name: (
- name: )
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.Initialize
parent: TinyLife.Actions.Behaviors.ActionBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Initialize
2022-09-05 14:19:42 +02:00
name: Initialize()
nameWithType: ActionBehavior.Initialize()
fullName: TinyLife.Actions.Behaviors.ActionBehavior.Initialize()
spec.csharp:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
name: Initialize
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Initialize
2022-09-05 14:19:42 +02:00
- name: (
- name: )
spec.vb:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
name: Initialize
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Initialize
2022-09-05 14:19:42 +02:00
- name: (
- name: )
- uid: TinyLife.Actions.Behaviors.ReadBehavior.Initialize*
commentId: Overload:TinyLife.Actions.Behaviors.ReadBehavior.Initialize
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ReadBehavior.html#TinyLife_Actions_Behaviors_ReadBehavior_Initialize
2022-09-05 14:19:42 +02:00
name: Initialize
nameWithType: ReadBehavior.Initialize
fullName: TinyLife.Actions.Behaviors.ReadBehavior.Initialize
2024-01-07 16:53:47 +01:00
- 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.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.GameImpl.Speed
commentId: P:TinyLife.GameImpl.Speed
href: TinyLife.GameImpl.html#TinyLife_GameImpl_Speed
name: Speed
nameWithType: GameImpl.Speed
fullName: TinyLife.GameImpl.Speed
2023-06-25 15:41:49 +02:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.Actions.Behaviors.ActionBehavior
isExternal: true
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2023-06-25 15:41:49 +02:00
name: Update(GameTime, TimeSpan, float)
nameWithType: ActionBehavior.Update(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: ActionBehavior.Update(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: Update(GameTime, TimeSpan, Single)
spec.csharp:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: Update
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2023-06-25 15:41:49 +02:00
- 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.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name: Update
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2023-06-25 15:41:49 +02:00
- 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.Behaviors.ReadBehavior.Update*
commentId: Overload:TinyLife.Actions.Behaviors.ReadBehavior.Update
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ReadBehavior.html#TinyLife_Actions_Behaviors_ReadBehavior_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2023-06-25 15:41:49 +02:00
name: Update
nameWithType: ReadBehavior.Update
fullName: TinyLife.Actions.Behaviors.ReadBehavior.Update
- uid: Microsoft.Xna.Framework.GameTime
commentId: T:Microsoft.Xna.Framework.GameTime
parent: Microsoft.Xna.Framework
isExternal: true
name: GameTime
nameWithType: GameTime
fullName: Microsoft.Xna.Framework.GameTime
- uid: System.TimeSpan
commentId: T:System.TimeSpan
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.timespan
name: TimeSpan
nameWithType: TimeSpan
fullName: System.TimeSpan
- uid: System.Single
commentId: T:System.Single
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.single
name: float
nameWithType: float
fullName: float
nameWithType.vb: Single
fullName.vb: Single
name.vb: Single
- uid: Microsoft.Xna.Framework
commentId: N:Microsoft.Xna.Framework
isExternal: true
name: Microsoft.Xna.Framework
nameWithType: Microsoft.Xna.Framework
fullName: Microsoft.Xna.Framework
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
parent: TinyLife.Actions.Behaviors.ActionBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CanMultitask_TinyLife_Actions_Action_
2022-09-05 14:19:42 +02:00
name: CanMultitask(Action)
nameWithType: ActionBehavior.CanMultitask(Action)
fullName: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
spec.csharp:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
name: CanMultitask
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CanMultitask_TinyLife_Actions_Action_
2022-09-05 14:19:42 +02:00
- name: (
- uid: TinyLife.Actions.Action
name: Action
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Action.html
2022-09-05 14:19:42 +02:00
- name: )
spec.vb:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
name: CanMultitask
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CanMultitask_TinyLife_Actions_Action_
2022-09-05 14:19:42 +02:00
- name: (
- uid: TinyLife.Actions.Action
name: Action
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Action.html
2022-09-05 14:19:42 +02:00
- name: )
- uid: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask*
commentId: Overload:TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ReadBehavior.html#TinyLife_Actions_Behaviors_ReadBehavior_CanMultitask_TinyLife_Actions_Action_
2022-09-05 14:19:42 +02:00
name: CanMultitask
nameWithType: ReadBehavior.CanMultitask
fullName: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask
2024-01-07 16:53:47 +01:00
- uid: TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.Action
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_OnCompleted_TinyLife_Actions_CompletionType_
name: OnCompleted(CompletionType)
nameWithType: Action.OnCompleted(CompletionType)
fullName: TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
spec.csharp:
- uid: TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
name: OnCompleted
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_OnCompleted_TinyLife_Actions_CompletionType_
- name: (
- uid: TinyLife.Actions.CompletionType
name: CompletionType
href: TinyLife.Actions.CompletionType.html
- name: )
spec.vb:
- uid: TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
name: OnCompleted
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_OnCompleted_TinyLife_Actions_CompletionType_
- name: (
- uid: TinyLife.Actions.CompletionType
name: CompletionType
href: TinyLife.Actions.CompletionType.html
- name: )
2023-06-25 15:41:49 +02:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.Behaviors.ActionBehavior
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_OnCompleted_TinyLife_Actions_CompletionType_
2023-06-25 15:41:49 +02:00
name: OnCompleted(CompletionType)
nameWithType: ActionBehavior.OnCompleted(CompletionType)
fullName: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
spec.csharp:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
name: OnCompleted
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_OnCompleted_TinyLife_Actions_CompletionType_
2023-06-25 15:41:49 +02:00
- name: (
- uid: TinyLife.Actions.CompletionType
name: CompletionType
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.CompletionType.html
2023-06-25 15:41:49 +02:00
- name: )
spec.vb:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
name: OnCompleted
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_OnCompleted_TinyLife_Actions_CompletionType_
2023-06-25 15:41:49 +02:00
- name: (
- uid: TinyLife.Actions.CompletionType
name: CompletionType
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.CompletionType.html
2023-06-25 15:41:49 +02:00
- name: )
- uid: TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted*
commentId: Overload:TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.Behaviors.ReadBehavior.html#TinyLife_Actions_Behaviors_ReadBehavior_OnCompleted_TinyLife_Actions_CompletionType_
2023-06-25 15:41:49 +02:00
name: OnCompleted
nameWithType: ReadBehavior.OnCompleted
fullName: TinyLife.Actions.Behaviors.ReadBehavior.OnCompleted
- uid: TinyLife.Actions.CompletionType
commentId: T:TinyLife.Actions.CompletionType
parent: TinyLife.Actions
2024-01-07 16:53:47 +01:00
href: TinyLife.Actions.CompletionType.html
2023-06-25 15:41:49 +02:00
name: CompletionType
nameWithType: CompletionType
fullName: TinyLife.Actions.CompletionType