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

1000 lines
38 KiB
YAML
Raw Normal View History

2021-11-23 16:24:04 +01:00
### YamlMime:ManagedReference
items:
- uid: TinyLife.Actions.Behaviors.ComputerBehavior
commentId: T:TinyLife.Actions.Behaviors.ComputerBehavior
id: ComputerBehavior
parent: TinyLife.Actions.Behaviors
children:
2022-12-20 13:25:03 +01:00
- TinyLife.Actions.Behaviors.ComputerBehavior.#ctor(TinyLife.Actions.Action,System.String,System.TimeSpan,System.TimeSpan)
2023-03-30 18:07:55 +02:00
- TinyLife.Actions.Behaviors.ComputerBehavior.#ctor(TinyLife.Actions.Action,System.String)
2021-11-23 16:24:04 +01:00
- TinyLife.Actions.Behaviors.ComputerBehavior.Initialize
- TinyLife.Actions.Behaviors.ComputerBehavior.OnCompleted(TinyLife.Actions.CompletionType)
2022-09-05 14:19:42 +02:00
- TinyLife.Actions.Behaviors.ComputerBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-11-23 16:24:04 +01:00
langs:
- csharp
- vb
name: ComputerBehavior
nameWithType: ComputerBehavior
fullName: TinyLife.Actions.Behaviors.ComputerBehavior
type: Class
source:
remote:
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-11-23 16:24:04 +01:00
id: ComputerBehavior
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
2022-09-05 14:19:42 +02:00
startLine: 11
2021-11-23 16:24:04 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
summary: "\nA computer behavior is a <xref href=\"TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior\" data-throw-if-not-resolved=\"false\"></xref> that is executed at a computer.\nUsing this behavior automatically turns the computer on (<xref href=\"TinyLife.Objects.ScreenObject.TurnOn(System.String)\" data-throw-if-not-resolved=\"false\"></xref>) and plays a typing sound.\n"
example: []
syntax:
content: 'public class ComputerBehavior : WorkAtDeskObjectBehavior'
2023-03-30 18:07:55 +02:00
content.vb: Public Class ComputerBehavior Inherits WorkAtDeskObjectBehavior
2021-11-23 16:24:04 +01:00
inheritance:
- System.Object
- TinyLife.Actions.Behaviors.ActionBehavior
- TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior
inheritedMembers:
2022-12-20 13:25:03 +01:00
- TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.IsWorking
2021-11-23 16:24:04 +01:00
- TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.CreateFirstActions
- TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.GetNextAction(TinyLife.Actions.CompletionType)
- TinyLife.Actions.Behaviors.ActionBehavior.Action
2022-09-05 14:19:42 +02:00
- TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
2022-12-20 13:25:03 +01:00
- TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
2021-11-23 16:24:04 +01:00
- TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
2022-09-05 14:19:42 +02:00
- TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
2022-12-20 13:25:03 +01:00
- TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
2021-11-23 16:24:04 +01: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.ComputerBehavior.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.Actions.Behaviors.ComputerBehavior.#ctor(TinyLife.Actions.Action,System.String)
commentId: M:TinyLife.Actions.Behaviors.ComputerBehavior.#ctor(TinyLife.Actions.Action,System.String)
id: '#ctor(TinyLife.Actions.Action,System.String)'
parent: TinyLife.Actions.Behaviors.ComputerBehavior
langs:
- csharp
- vb
2023-03-30 18:07:55 +02:00
name: ComputerBehavior(Action, string)
nameWithType: ComputerBehavior.ComputerBehavior(Action, string)
fullName: TinyLife.Actions.Behaviors.ComputerBehavior.ComputerBehavior(TinyLife.Actions.Action, string)
2021-11-23 16:24:04 +01:00
type: Constructor
source:
remote:
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-11-23 16:24:04 +01:00
id: .ctor
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
2022-12-20 13:25:03 +01:00
startLine: 21
2021-11-23 16:24:04 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
2022-12-20 13:25:03 +01:00
summary: "\nCreates a new computer behavior with the given settings.\n"
2021-11-23 16:24:04 +01:00
example: []
syntax:
content: public ComputerBehavior(Action action, string screenContent)
parameters:
- id: action
type: TinyLife.Actions.Action
2022-12-20 13:25:03 +01:00
description: The action that this behavior is acting upon.
2021-11-23 16:24:04 +01:00
- id: screenContent
type: System.String
2022-12-20 13:25:03 +01:00
description: The name of the texture that should be displayed on the computer&apos;s screen, which is passed to <xref href="TinyLife.Objects.ScreenObject.TurnOn(System.String)" data-throw-if-not-resolved="false"></xref>.
2021-11-23 16:24:04 +01:00
content.vb: Public Sub New(action As Action, screenContent As String)
overload: TinyLife.Actions.Behaviors.ComputerBehavior.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb: ComputerBehavior.New(Action, String)
fullName.vb: TinyLife.Actions.Behaviors.ComputerBehavior.New(TinyLife.Actions.Action, String)
name.vb: New(Action, String)
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.Behaviors.ComputerBehavior.#ctor(TinyLife.Actions.Action,System.String,System.TimeSpan,System.TimeSpan)
commentId: M:TinyLife.Actions.Behaviors.ComputerBehavior.#ctor(TinyLife.Actions.Action,System.String,System.TimeSpan,System.TimeSpan)
id: '#ctor(TinyLife.Actions.Action,System.String,System.TimeSpan,System.TimeSpan)'
parent: TinyLife.Actions.Behaviors.ComputerBehavior
langs:
- csharp
- vb
2023-03-30 18:07:55 +02:00
name: ComputerBehavior(Action, string, TimeSpan, TimeSpan)
nameWithType: ComputerBehavior.ComputerBehavior(Action, string, TimeSpan, TimeSpan)
fullName: TinyLife.Actions.Behaviors.ComputerBehavior.ComputerBehavior(TinyLife.Actions.Action, string, System.TimeSpan, System.TimeSpan)
2022-12-20 13:25:03 +01:00
type: Constructor
source:
remote:
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2022-12-20 13:25:03 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
startLine: 32
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
summary: "\nCreates a new computer behavior with the given settings.\n"
example: []
syntax:
content: public ComputerBehavior(Action action, string screenContent, TimeSpan workTime, TimeSpan breakTime)
parameters:
- id: action
type: TinyLife.Actions.Action
description: The action that this behavior is acting upon.
- id: screenContent
type: System.String
description: The name of the texture that should be displayed on the computer&apos;s screen, which is passed to <xref href="TinyLife.Objects.ScreenObject.TurnOn(System.String)" data-throw-if-not-resolved="false"></xref>.
- id: workTime
type: System.TimeSpan
description: The amount of in-game time that this action&apos;s <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref> shoud look to be typing for.
- id: breakTime
type: System.TimeSpan
description: The amount of in-game time that this action&apos;s <xref href="TinyLife.Objects.Person" data-throw-if-not-resolved="false"></xref> should look to be waiting for inbetween typing sessions.
content.vb: Public Sub New(action As Action, screenContent As String, workTime As TimeSpan, breakTime As TimeSpan)
overload: TinyLife.Actions.Behaviors.ComputerBehavior.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb: ComputerBehavior.New(Action, String, TimeSpan, TimeSpan)
fullName.vb: TinyLife.Actions.Behaviors.ComputerBehavior.New(TinyLife.Actions.Action, String, System.TimeSpan, System.TimeSpan)
name.vb: New(Action, String, TimeSpan, TimeSpan)
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Actions.Behaviors.ComputerBehavior.Initialize
commentId: M:TinyLife.Actions.Behaviors.ComputerBehavior.Initialize
id: Initialize
parent: TinyLife.Actions.Behaviors.ComputerBehavior
langs:
- csharp
- vb
name: Initialize()
nameWithType: ComputerBehavior.Initialize()
fullName: TinyLife.Actions.Behaviors.ComputerBehavior.Initialize()
type: Method
source:
remote:
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-11-23 16:24:04 +01:00
id: Initialize
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
2022-12-20 13:25:03 +01:00
startLine: 37
2021-11-23 16:24:04 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
2022-12-20 13:25:03 +01:00
summary: "\nInitializes this action behavior.\nThis 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>.\n"
2021-11-23 16:24:04 +01:00
example: []
syntax:
content: public override void Initialize()
2023-03-30 18:07:55 +02:00
content.vb: Public Overrides Sub Initialize()
2021-11-23 16:24:04 +01:00
overridden: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
overload: TinyLife.Actions.Behaviors.ComputerBehavior.Initialize*
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Behaviors.ComputerBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.Behaviors.ComputerBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
id: Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-11-23 16:24:04 +01:00
parent: TinyLife.Actions.Behaviors.ComputerBehavior
langs:
- csharp
- vb
2023-03-30 18:07:55 +02:00
name: Update(GameTime, TimeSpan, float)
nameWithType: ComputerBehavior.Update(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.Behaviors.ComputerBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
2021-11-23 16:24:04 +01:00
type: Method
source:
remote:
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-11-23 16:24:04 +01:00
id: Update
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
2022-12-20 13:25:03 +01:00
startLine: 42
2021-11-23 16:24:04 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
2022-12-20 13:25:03 +01:00
summary: "\nUpdates this action behavior every update frame.\nThis 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>.\n"
2021-11-23 16:24:04 +01:00
example: []
syntax:
2021-11-26 23:42:22 +01:00
content: public override void Update(GameTime time, TimeSpan passedInGame, float speedMultiplier)
2021-11-23 16:24:04 +01:00
parameters:
- id: time
2022-09-05 14:19:42 +02:00
type: Microsoft.Xna.Framework.GameTime
2022-01-08 12:41:09 +01:00
description: The game time
2021-11-23 16:24:04 +01:00
- id: passedInGame
type: System.TimeSpan
2022-01-08 12:41:09 +01:00
description: The amount of time that has passed since the last update frame
2021-11-26 23:42:22 +01:00
- id: speedMultiplier
type: System.Single
2022-01-08 12:41:09 +01:00
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>
2021-11-26 23:42:22 +01:00
content.vb: Public Overrides Sub Update(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single)
2022-09-05 14:19:42 +02:00
overridden: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-11-23 16:24:04 +01:00
overload: TinyLife.Actions.Behaviors.ComputerBehavior.Update*
2023-03-30 18:07:55 +02:00
nameWithType.vb: ComputerBehavior.Update(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.Behaviors.ComputerBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: Update(GameTime, TimeSpan, Single)
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Actions.Behaviors.ComputerBehavior.OnCompleted(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.Behaviors.ComputerBehavior.OnCompleted(TinyLife.Actions.CompletionType)
id: OnCompleted(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.Behaviors.ComputerBehavior
langs:
- csharp
- vb
name: OnCompleted(CompletionType)
nameWithType: ComputerBehavior.OnCompleted(CompletionType)
fullName: TinyLife.Actions.Behaviors.ComputerBehavior.OnCompleted(TinyLife.Actions.CompletionType)
type: Method
source:
remote:
path: TinyLife/Actions/Behaviors/ComputerBehavior.cs
2023-12-06 13:25:52 +01:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-11-23 16:24:04 +01:00
id: OnCompleted
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Actions/Behaviors/ComputerBehavior.cs
2022-12-20 13:25:03 +01:00
startLine: 56
2021-11-23 16:24:04 +01:00
assemblies:
- Tiny Life
namespace: TinyLife.Actions.Behaviors
2022-12-20 13:25:03 +01:00
summary: "\nCauses any activities that this action behavior executes to be marked as completed.\nThis 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>.\n"
2021-11-23 16:24:04 +01:00
example: []
syntax:
content: public override void OnCompleted(CompletionType completion)
parameters:
- id: completion
type: TinyLife.Actions.CompletionType
2022-01-08 12:41:09 +01:00
description: ''
2021-11-23 16:24:04 +01:00
content.vb: Public Overrides Sub OnCompleted(completion As CompletionType)
overridden: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
overload: TinyLife.Actions.Behaviors.ComputerBehavior.OnCompleted*
references:
- uid: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior
commentId: T:TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior
parent: TinyLife.Actions.Behaviors
name: WorkAtDeskObjectBehavior
nameWithType: WorkAtDeskObjectBehavior
fullName: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior
- uid: TinyLife.Objects.ScreenObject.TurnOn(System.String)
commentId: M:TinyLife.Objects.ScreenObject.TurnOn(System.String)
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.string
name: TurnOn(string)
nameWithType: ScreenObject.TurnOn(string)
fullName: TinyLife.Objects.ScreenObject.TurnOn(string)
nameWithType.vb: ScreenObject.TurnOn(String)
fullName.vb: TinyLife.Objects.ScreenObject.TurnOn(String)
name.vb: TurnOn(String)
spec.csharp:
- uid: TinyLife.Objects.ScreenObject.TurnOn(System.String)
name: TurnOn
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
spec.vb:
- uid: TinyLife.Objects.ScreenObject.TurnOn(System.String)
name: TurnOn
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Actions.Behaviors
commentId: N:TinyLife.Actions.Behaviors
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
- name: .
- uid: TinyLife.Actions
name: Actions
- name: .
- uid: TinyLife.Actions.Behaviors
name: Behaviors
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Actions
name: Actions
- name: .
- uid: TinyLife.Actions.Behaviors
name: Behaviors
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior
commentId: T:TinyLife.Actions.Behaviors.ActionBehavior
parent: TinyLife.Actions.Behaviors
name: ActionBehavior
nameWithType: ActionBehavior
fullName: TinyLife.Actions.Behaviors.ActionBehavior
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.IsWorking
commentId: P:TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.IsWorking
parent: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior
name: IsWorking
nameWithType: WorkAtDeskObjectBehavior.IsWorking
fullName: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.IsWorking
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.CreateFirstActions
commentId: M:TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.CreateFirstActions
parent: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior
name: CreateFirstActions()
nameWithType: WorkAtDeskObjectBehavior.CreateFirstActions()
fullName: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.CreateFirstActions()
spec.csharp:
- uid: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.CreateFirstActions
name: CreateFirstActions
- name: (
- name: )
spec.vb:
- uid: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.CreateFirstActions
name: CreateFirstActions
- name: (
- name: )
- uid: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.GetNextAction(TinyLife.Actions.CompletionType)
commentId: M:TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.GetNextAction(TinyLife.Actions.CompletionType)
parent: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior
name: GetNextAction(CompletionType)
nameWithType: WorkAtDeskObjectBehavior.GetNextAction(CompletionType)
fullName: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.GetNextAction(TinyLife.Actions.CompletionType)
spec.csharp:
- uid: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.GetNextAction(TinyLife.Actions.CompletionType)
name: GetNextAction
- name: (
- uid: TinyLife.Actions.CompletionType
name: CompletionType
- name: )
spec.vb:
- uid: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.GetNextAction(TinyLife.Actions.CompletionType)
name: GetNextAction
- name: (
- uid: TinyLife.Actions.CompletionType
name: CompletionType
- 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
name: Action
nameWithType: ActionBehavior.Action
fullName: TinyLife.Actions.Behaviors.ActionBehavior.Action
- uid: TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
commentId: P:TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
parent: TinyLife.Actions.Behaviors.ActionBehavior
name: FullyInProgress
nameWithType: ActionBehavior.FullyInProgress
fullName: TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
parent: TinyLife.Actions.Behaviors.ActionBehavior
2022-07-04 16:50:43 +02:00
name: CreateLastActions()
2022-12-20 13:25:03 +01:00
nameWithType: ActionBehavior.CreateLastActions()
fullName: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions()
2022-07-04 16:50:43 +02:00
spec.csharp:
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
2022-07-04 16:50:43 +02:00
name: CreateLastActions
- name: (
- name: )
spec.vb:
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
2022-07-04 16:50:43 +02:00
name: CreateLastActions
- name: (
- name: )
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
parent: TinyLife.Actions.Behaviors.ActionBehavior
name: GetIconObject()
nameWithType: ActionBehavior.GetIconObject()
fullName: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject()
spec.csharp:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
name: GetIconObject
- name: (
- name: )
spec.vb:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
name: GetIconObject
- name: (
- name: )
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
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
- name: (
- uid: TinyLife.Actions.Action
name: Action
- name: )
spec.vb:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
name: CanMultitask
- name: (
- uid: TinyLife.Actions.Action
name: Action
- 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)
2021-11-23 16:24:04 +01:00
parent: TinyLife.Actions.Behaviors.ActionBehavior
2022-12-20 13:25:03 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.type
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)
2021-11-23 16:24:04 +01:00
spec.csharp:
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
name: CreateDefaultInstance
2021-11-23 16:24:04 +01: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: " "
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Actions.Action
name: Action
- name: )
spec.vb:
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
name: CreateDefaultInstance
2021-11-23 16:24:04 +01: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: " "
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Actions.Action
name: Action
- 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)
2021-11-23 16:24:04 +01: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)
2021-11-23 16:24:04 +01:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-11-23 16:24:04 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-11-23 16:24:04 +01: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)
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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)
2021-11-23 16:24:04 +01: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)
2021-11-23 16:24:04 +01:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-11-23 16:24:04 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-11-23 16:24:04 +01:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-11-23 16:24:04 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-11-23 16:24:04 +01: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)
2021-11-23 16:24:04 +01: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: " "
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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()
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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()
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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()
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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)
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-11-23 16:24:04 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-11-23 16:24:04 +01:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-11-23 16:24:04 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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: " "
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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()
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01:00
- name: (
- name: )
- uid: TinyLife.Actions.Behaviors.ComputerBehavior.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy<ComputerBehavior>(ComputerBehavior)
nameWithType: Extensions.JsonCopy<ComputerBehavior>(ComputerBehavior)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.Behaviors.ComputerBehavior>(TinyLife.Actions.Behaviors.ComputerBehavior)
nameWithType.vb: Extensions.JsonCopy(Of ComputerBehavior)(ComputerBehavior)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.Behaviors.ComputerBehavior)(TinyLife.Actions.Behaviors.ComputerBehavior)
name.vb: JsonCopy(Of ComputerBehavior)(ComputerBehavior)
2021-11-23 16:24:04 +01:00
spec.csharp:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Behaviors.ComputerBehavior)
name: JsonCopy
- name: <
- uid: TinyLife.Actions.Behaviors.ComputerBehavior
name: ComputerBehavior
- name: '>'
2021-11-23 16:24:04 +01:00
- name: (
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Actions.Behaviors.ComputerBehavior
name: ComputerBehavior
2021-11-23 16:24:04 +01:00
- name: )
spec.vb:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Behaviors.ComputerBehavior)
name: JsonCopy
- name: (
- name: Of
- name: " "
- uid: TinyLife.Actions.Behaviors.ComputerBehavior
name: ComputerBehavior
- name: )
2021-11-23 16:24:04 +01:00
- name: (
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Actions.Behaviors.ComputerBehavior
name: ComputerBehavior
2021-11-23 16:24:04 +01:00
- name: )
- uid: System
commentId: N:System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2021-11-23 16:24:04 +01:00
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)
2023-03-30 18:07:55 +02:00
name: JsonCopy
- name: <
- name: T
- name: '>'
2021-11-23 16:24:04 +01:00
- name: (
- name: T
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy
- name: (
- name: Of
- name: " "
- name: T
- name: )
2021-11-23 16:24:04 +01:00
- name: (
- name: T
- name: )
- 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
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Utilities
name: Utilities
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Utilities
name: Utilities
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Actions.Behaviors.ComputerBehavior.#ctor*
commentId: Overload:TinyLife.Actions.Behaviors.ComputerBehavior.#ctor
name: ComputerBehavior
nameWithType: ComputerBehavior.ComputerBehavior
fullName: TinyLife.Actions.Behaviors.ComputerBehavior.ComputerBehavior
2023-03-30 18:07:55 +02:00
nameWithType.vb: ComputerBehavior.New
fullName.vb: TinyLife.Actions.Behaviors.ComputerBehavior.New
name.vb: New
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Actions.Action
commentId: T:TinyLife.Actions.Action
parent: TinyLife.Actions
name: Action
nameWithType: Action
fullName: TinyLife.Actions.Action
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Actions
commentId: N:TinyLife.Actions
name: TinyLife.Actions
nameWithType: TinyLife.Actions
fullName: TinyLife.Actions
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Actions
name: Actions
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Actions
name: Actions
2022-12-20 13:25:03 +01:00
- uid: TinyLife.Objects.Person
commentId: T:TinyLife.Objects.Person
parent: TinyLife.Objects
name: Person
nameWithType: Person
fullName: TinyLife.Objects.Person
- uid: System.TimeSpan
commentId: T:System.TimeSpan
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.timespan
2022-12-20 13:25:03 +01:00
name: TimeSpan
nameWithType: TimeSpan
fullName: System.TimeSpan
- uid: TinyLife.Objects
commentId: N:TinyLife.Objects
name: TinyLife.Objects
nameWithType: TinyLife.Objects
fullName: TinyLife.Objects
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Objects
name: Objects
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Objects
name: Objects
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.Initialize
parent: TinyLife.Actions.Behaviors.ActionBehavior
name: Initialize()
nameWithType: ActionBehavior.Initialize()
fullName: TinyLife.Actions.Behaviors.ActionBehavior.Initialize()
spec.csharp:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
name: Initialize
- name: (
- name: )
spec.vb:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.Initialize
name: Initialize
- name: (
- name: )
- uid: TinyLife.Actions.Behaviors.ComputerBehavior.Initialize*
commentId: Overload:TinyLife.Actions.Behaviors.ComputerBehavior.Initialize
name: Initialize
nameWithType: ComputerBehavior.Initialize
fullName: TinyLife.Actions.Behaviors.ComputerBehavior.Initialize
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-11-23 16:24:04 +01:00
parent: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.timespan
name: Update(GameTime, TimeSpan, float)
nameWithType: WorkAtDeskObjectBehavior.Update(GameTime, TimeSpan, float)
fullName: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb: WorkAtDeskObjectBehavior.Update(GameTime, TimeSpan, Single)
fullName.vb: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb: Update(GameTime, TimeSpan, Single)
2021-11-23 16:24:04 +01:00
spec.csharp:
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-11-23 16:24:04 +01:00
name: Update
- name: (
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.GameTime
2021-11-23 16:24:04 +01:00
name: GameTime
isExternal: true
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2021-11-23 16:24:04 +01:00
- uid: System.TimeSpan
name: TimeSpan
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.timespan
- name: ','
- name: " "
2021-11-26 23:42:22 +01:00
- uid: System.Single
2023-03-30 18:07:55 +02:00
name: float
2021-11-26 23:42:22 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.single
2021-11-23 16:24:04 +01:00
- name: )
spec.vb:
2022-09-05 14:19:42 +02:00
- uid: TinyLife.Actions.Behaviors.WorkAtDeskObjectBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-11-23 16:24:04 +01:00
name: Update
- name: (
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.GameTime
2021-11-23 16:24:04 +01:00
name: GameTime
isExternal: true
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2021-11-23 16:24:04 +01:00
- uid: System.TimeSpan
name: TimeSpan
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.timespan
- name: ','
- name: " "
2021-11-26 23:42:22 +01:00
- uid: System.Single
name: Single
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.single
2021-11-23 16:24:04 +01:00
- name: )
- uid: TinyLife.Actions.Behaviors.ComputerBehavior.Update*
commentId: Overload:TinyLife.Actions.Behaviors.ComputerBehavior.Update
name: Update
nameWithType: ComputerBehavior.Update
fullName: TinyLife.Actions.Behaviors.ComputerBehavior.Update
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.GameTime
commentId: T:Microsoft.Xna.Framework.GameTime
parent: Microsoft.Xna.Framework
2021-11-23 16:24:04 +01:00
isExternal: true
name: GameTime
nameWithType: GameTime
2022-09-05 14:19:42 +02:00
fullName: Microsoft.Xna.Framework.GameTime
2021-11-26 23:42:22 +01:00
- uid: System.Single
commentId: T:System.Single
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.single
name: float
nameWithType: float
fullName: float
nameWithType.vb: Single
fullName.vb: Single
name.vb: Single
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework
commentId: N:Microsoft.Xna.Framework
isExternal: true
name: Microsoft.Xna.Framework
nameWithType: Microsoft.Xna.Framework
fullName: Microsoft.Xna.Framework
2023-03-30 18:07:55 +02:00
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
2021-11-23 16:24:04 +01: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
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
- name: (
- uid: TinyLife.Actions.CompletionType
name: CompletionType
- name: )
spec.vb:
- uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
name: OnCompleted
- name: (
- uid: TinyLife.Actions.CompletionType
name: CompletionType
- name: )
- uid: TinyLife.Actions.Behaviors.ComputerBehavior.OnCompleted*
commentId: Overload:TinyLife.Actions.Behaviors.ComputerBehavior.OnCompleted
name: OnCompleted
nameWithType: ComputerBehavior.OnCompleted
fullName: TinyLife.Actions.Behaviors.ComputerBehavior.OnCompleted
- uid: TinyLife.Actions.CompletionType
commentId: T:TinyLife.Actions.CompletionType
parent: TinyLife.Actions
name: CompletionType
nameWithType: CompletionType
fullName: TinyLife.Actions.CompletionType