2021-11-23 16:24:04 +01:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Actions.Behaviors.SinkBehavior
commentId : T:TinyLife.Actions.Behaviors.SinkBehavior
id : SinkBehavior
parent : TinyLife.Actions.Behaviors
children :
- TinyLife.Actions.Behaviors.SinkBehavior.#ctor(TinyLife.Actions.Action)
- TinyLife.Actions.Behaviors.SinkBehavior.CreateFirstActions
- TinyLife.Actions.Behaviors.SinkBehavior.OnCompleted(TinyLife.Actions.CompletionType)
2022-09-05 14:19:42 +02:00
- TinyLife.Actions.Behaviors.SinkBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-11-23 16:24:04 +01:00
langs :
- csharp
- vb
name : SinkBehavior
nameWithType : SinkBehavior
fullName : TinyLife.Actions.Behaviors.SinkBehavior
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
summary : >-
An <xref href="TinyLife.Actions.Behaviors.ActionBehavior" data-throw-if-not-resolved="false"></xref> for an action that is invoked at a <xref href="ExtremelySimpleLogger.Sink" data-throw-if-not-resolved="false"></xref>.
If the sink is not the main <xref href="TinyLife.Actions.ActionInfo.GetActionObject%60%601(System.Boolean)" data-throw-if-not-resolved="false"></xref>, it should be added as an auxiliary object using <xref href="TinyLife.Actions.ActionInfo.AddAuxiliaryObject(TinyLife.Objects.MapObject%2cTinyLife.Objects.ActionSpot)" data-throw-if-not-resolved="false"></xref> in <xref href="TinyLife.Actions.MultiAction.AndThenInitialize" data-throw-if-not-resolved="false"></xref>.
This behavior automatically displays a running water sound and sets the active person's pose to a working version using <xref href="TinyLife.Utilities.Extensions.ToWorking(TinyLife.Objects.Pose)" data-throw-if-not-resolved="false"></xref>.
2021-11-23 16:24:04 +01:00
example : [ ]
syntax :
2022-12-20 13:25:03 +01:00
content: 'public class SinkBehavior : ActionBehavior'
2023-03-30 18:07:55 +02:00
content.vb : Public Class SinkBehavior Inherits ActionBehavior
2021-11-23 16:24:04 +01:00
inheritance :
- System.Object
- TinyLife.Actions.Behaviors.ActionBehavior
inheritedMembers :
- 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.Initialize
- TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
2022-09-05 14:19:42 +02:00
- TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
2021-11-23 16:24:04 +01:00
- TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
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.SinkBehavior.TinyLife.Utilities.Extensions.JsonCopy``1
- uid : TinyLife.Actions.Behaviors.SinkBehavior.#ctor(TinyLife.Actions.Action)
commentId : M:TinyLife.Actions.Behaviors.SinkBehavior.#ctor(TinyLife.Actions.Action)
id : '#ctor(TinyLife.Actions.Action)'
parent : TinyLife.Actions.Behaviors.SinkBehavior
langs :
- csharp
- vb
name : SinkBehavior(Action)
nameWithType : SinkBehavior.SinkBehavior(Action)
fullName : TinyLife.Actions.Behaviors.SinkBehavior.SinkBehavior(TinyLife.Actions.Action)
type : Constructor
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
summary : >-
Creates a new action behavior with the given underlying action.
To create an action behavior of a given type automatically, use <xref href="TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type%2cTinyLife.Actions.Action)" data-throw-if-not-resolved="false"></xref>.
2021-11-23 16:24:04 +01:00
example : [ ]
syntax :
content : public SinkBehavior(Action action)
parameters :
- id : action
type : TinyLife.Actions.Action
2022-01-08 12:41:09 +01:00
description : The action that this behavior is acting upon
2021-11-23 16:24:04 +01:00
content.vb : Public Sub New(action As Action)
overload : TinyLife.Actions.Behaviors.SinkBehavior.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : SinkBehavior.New(Action)
fullName.vb : TinyLife.Actions.Behaviors.SinkBehavior.New(TinyLife.Actions.Action)
name.vb : New(Action)
2021-11-23 16:24:04 +01:00
- uid : TinyLife.Actions.Behaviors.SinkBehavior.CreateFirstActions
commentId : M:TinyLife.Actions.Behaviors.SinkBehavior.CreateFirstActions
id : CreateFirstActions
parent : TinyLife.Actions.Behaviors.SinkBehavior
langs :
- csharp
- vb
name : CreateFirstActions()
nameWithType : SinkBehavior.CreateFirstActions()
fullName : TinyLife.Actions.Behaviors.SinkBehavior.CreateFirstActions()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
summary : >-
Creates a set of actions that should be executed before the main <xref href="TinyLife.Actions.Behaviors.ActionBehavior.Action" data-throw-if-not-resolved="false"></xref> starts.
This method is automatically called when using <xref href="TinyLife.Actions.BehaviorAction" data-throw-if-not-resolved="false"></xref> in <xref href="TinyLife.Actions.BehaviorAction.CreateFirstActions" data-throw-if-not-resolved="false"></xref>.
2021-11-23 16:24:04 +01:00
example : [ ]
syntax :
content : public override IEnumerable<Action> CreateFirstActions()
return :
type : System.Collections.Generic.IEnumerable{TinyLife.Actions.Action}
2022-01-08 12:41:09 +01:00
description : ''
2023-03-30 18:07:55 +02:00
content.vb : Public Overrides Function CreateFirstActions() As IEnumerable(Of Action)
2022-12-20 13:25:03 +01:00
overridden : TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
2021-11-23 16:24:04 +01:00
overload : TinyLife.Actions.Behaviors.SinkBehavior.CreateFirstActions*
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Actions.Behaviors.SinkBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId : M:TinyLife.Actions.Behaviors.SinkBehavior.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.SinkBehavior
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Update(GameTime, TimeSpan, float)
nameWithType : SinkBehavior.Update(GameTime, TimeSpan, float)
fullName : TinyLife.Actions.Behaviors.SinkBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
2021-11-23 16:24:04 +01:00
type : Method
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>.
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.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-11-23 16:24:04 +01:00
overload : TinyLife.Actions.Behaviors.SinkBehavior.Update*
2023-03-30 18:07:55 +02:00
nameWithType.vb : SinkBehavior.Update(GameTime, TimeSpan, Single)
fullName.vb : TinyLife.Actions.Behaviors.SinkBehavior.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.SinkBehavior.OnCompleted(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Actions.Behaviors.SinkBehavior.OnCompleted(TinyLife.Actions.CompletionType)
id : OnCompleted(TinyLife.Actions.CompletionType)
parent : TinyLife.Actions.Behaviors.SinkBehavior
langs :
- csharp
- vb
name : OnCompleted(CompletionType)
nameWithType : SinkBehavior.OnCompleted(CompletionType)
fullName : TinyLife.Actions.Behaviors.SinkBehavior.OnCompleted(TinyLife.Actions.CompletionType)
type : Method
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>.
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.SinkBehavior.OnCompleted*
references :
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.Behaviors.ActionBehavior
commentId : T:TinyLife.Actions.Behaviors.ActionBehavior
2021-11-23 16:24:04 +01:00
parent : TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.ActionBehavior.html
2022-12-20 13:25:03 +01:00
name : ActionBehavior
nameWithType : ActionBehavior
fullName : TinyLife.Actions.Behaviors.ActionBehavior
2021-11-23 16:24:04 +01:00
- uid : ExtremelySimpleLogger.Sink
commentId : T:ExtremelySimpleLogger.Sink
isExternal : true
2023-03-30 18:07:55 +02:00
name : Sink
nameWithType : Sink
fullName : ExtremelySimpleLogger.Sink
2022-10-18 13:03:11 +02:00
- uid : TinyLife.Actions.ActionInfo.GetActionObject``1(System.Boolean)
commentId : M:TinyLife.Actions.ActionInfo.GetActionObject``1(System.Boolean)
2021-11-23 16:24:04 +01:00
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_GetActionObject__1_System_Boolean_
2023-03-30 18:07:55 +02:00
name : GetActionObject<T>(bool)
nameWithType : ActionInfo.GetActionObject<T>(bool)
fullName : TinyLife.Actions.ActionInfo.GetActionObject<T>(bool)
nameWithType.vb : ActionInfo.GetActionObject(Of T)(Boolean)
fullName.vb : TinyLife.Actions.ActionInfo.GetActionObject(Of T)(Boolean)
name.vb : GetActionObject(Of T)(Boolean)
spec.csharp :
- uid : TinyLife.Actions.ActionInfo.GetActionObject``1(System.Boolean)
name : GetActionObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_GetActionObject__1_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
- name : (
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
spec.vb :
- uid : TinyLife.Actions.ActionInfo.GetActionObject``1(System.Boolean)
name : GetActionObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_GetActionObject__1_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- name : T
- name : )
- name : (
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
2021-11-23 16:24:04 +01:00
- uid : TinyLife.Actions.ActionInfo.AddAuxiliaryObject(TinyLife.Objects.MapObject,TinyLife.Objects.ActionSpot)
commentId : M:TinyLife.Actions.ActionInfo.AddAuxiliaryObject(TinyLife.Objects.MapObject,TinyLife.Objects.ActionSpot)
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_AddAuxiliaryObject_TinyLife_Objects_MapObject_TinyLife_Objects_ActionSpot_
2023-03-30 18:07:55 +02:00
name : AddAuxiliaryObject(MapObject, ActionSpot)
nameWithType : ActionInfo.AddAuxiliaryObject(MapObject, ActionSpot)
fullName : TinyLife.Actions.ActionInfo.AddAuxiliaryObject(TinyLife.Objects.MapObject, TinyLife.Objects.ActionSpot)
spec.csharp :
- uid : TinyLife.Actions.ActionInfo.AddAuxiliaryObject(TinyLife.Objects.MapObject,TinyLife.Objects.ActionSpot)
name : AddAuxiliaryObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_AddAuxiliaryObject_TinyLife_Objects_MapObject_TinyLife_Objects_ActionSpot_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Objects.MapObject
name : MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Objects.ActionSpot
name : ActionSpot
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.ActionSpot.html
2023-03-30 18:07:55 +02:00
- name : )
spec.vb :
- uid : TinyLife.Actions.ActionInfo.AddAuxiliaryObject(TinyLife.Objects.MapObject,TinyLife.Objects.ActionSpot)
name : AddAuxiliaryObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html#TinyLife_Actions_ActionInfo_AddAuxiliaryObject_TinyLife_Objects_MapObject_TinyLife_Objects_ActionSpot_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Objects.MapObject
name : MapObject
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Objects.ActionSpot
name : ActionSpot
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.ActionSpot.html
2023-03-30 18:07:55 +02:00
- name : )
2021-11-23 16:24:04 +01:00
- uid : TinyLife.Actions.MultiAction.AndThenInitialize
commentId : M:TinyLife.Actions.MultiAction.AndThenInitialize
parent : TinyLife.Actions.MultiAction
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenInitialize
2021-11-23 16:24:04 +01:00
name : AndThenInitialize()
nameWithType : MultiAction.AndThenInitialize()
fullName : TinyLife.Actions.MultiAction.AndThenInitialize()
spec.csharp :
- uid : TinyLife.Actions.MultiAction.AndThenInitialize
name : AndThenInitialize
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenInitialize
2021-11-23 16:24:04 +01:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Actions.MultiAction.AndThenInitialize
name : AndThenInitialize
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.MultiAction.html#TinyLife_Actions_MultiAction_AndThenInitialize
2021-11-23 16:24:04 +01:00
- name : (
- name : )
2023-04-14 13:00:36 +02:00
- uid : TinyLife.Utilities.Extensions.ToWorking(TinyLife.Objects.Pose)
commentId : M:TinyLife.Utilities.Extensions.ToWorking(TinyLife.Objects.Pose)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_ToWorking_TinyLife_Objects_Pose_
2023-03-30 18:07:55 +02:00
name : ToWorking(Pose)
2023-04-14 13:00:36 +02:00
nameWithType : Extensions.ToWorking(Pose)
fullName : TinyLife.Utilities.Extensions.ToWorking(TinyLife.Objects.Pose)
2021-11-23 16:24:04 +01:00
spec.csharp :
2023-04-14 13:00:36 +02:00
- uid : TinyLife.Utilities.Extensions.ToWorking(TinyLife.Objects.Pose)
2021-11-23 16:24:04 +01:00
name : ToWorking
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_ToWorking_TinyLife_Objects_Pose_
2021-11-23 16:24:04 +01:00
- name : (
2023-04-14 13:00:36 +02:00
- uid : TinyLife.Objects.Pose
2023-03-30 18:07:55 +02:00
name : Pose
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Pose.html
2021-11-23 16:24:04 +01:00
- name : )
spec.vb :
2023-04-14 13:00:36 +02:00
- uid : TinyLife.Utilities.Extensions.ToWorking(TinyLife.Objects.Pose)
2021-11-23 16:24:04 +01:00
name : ToWorking
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_ToWorking_TinyLife_Objects_Pose_
2021-11-23 16:24:04 +01:00
- name : (
2023-04-14 13:00:36 +02:00
- uid : TinyLife.Objects.Pose
2023-03-30 18:07:55 +02:00
name : Pose
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Pose.html
2021-11-23 16:24:04 +01:00
- name : )
- uid : TinyLife.Actions.Behaviors
commentId : N : TinyLife.Actions.Behaviors
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-11-23 16:24:04 +01: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
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
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.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-12-20 13:25:03 +01:00
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateLastActions
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateLastActions
2022-07-04 16:50:43 +02:00
- 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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateLastActions
2022-07-04 16:50:43 +02:00
- name : (
- name : )
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_Initialize
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01:00
- 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
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 : )
2021-11-23 16:24:04 +01:00
- uid : TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(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_GetNextAction_TinyLife_Actions_CompletionType_
2021-11-23 16:24:04 +01:00
name : GetNextAction(CompletionType)
nameWithType : ActionBehavior.GetNextAction(CompletionType)
fullName : TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
spec.csharp :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
name : GetNextAction
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_GetNextAction_TinyLife_Actions_CompletionType_
2021-11-23 16:24:04 +01:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-11-23 16:24:04 +01:00
- name : )
spec.vb :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
name : GetNextAction
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_GetNextAction_TinyLife_Actions_CompletionType_
2021-11-23 16:24:04 +01:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-11-23 16:24:04 +01:00
- 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
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)
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateDefaultInstance_System_Type_TinyLife_Actions_Action_
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html
2021-11-23 16:24:04 +01: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_
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html
2021-11-23 16:24:04 +01: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)
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.SinkBehavior.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<SinkBehavior>(SinkBehavior)
nameWithType : Extensions.JsonCopy<SinkBehavior>(SinkBehavior)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.Behaviors.SinkBehavior>(TinyLife.Actions.Behaviors.SinkBehavior)
nameWithType.vb : Extensions.JsonCopy(Of SinkBehavior)(SinkBehavior)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.Behaviors.SinkBehavior)(TinyLife.Actions.Behaviors.SinkBehavior)
name.vb : JsonCopy(Of SinkBehavior)(SinkBehavior)
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.SinkBehavior)
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.SinkBehavior
name : SinkBehavior
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.SinkBehavior.html
2023-03-30 18:07:55 +02:00
- name : '>'
2021-11-23 16:24:04 +01:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.Behaviors.SinkBehavior
name : SinkBehavior
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.SinkBehavior.html
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.SinkBehavior)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-11-23 16:24:04 +01:00
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- uid : TinyLife.Actions.Behaviors.SinkBehavior
name : SinkBehavior
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.SinkBehavior.html
2023-03-30 18:07:55 +02:00
- name : )
- name : (
- uid : TinyLife.Actions.Behaviors.SinkBehavior
name : SinkBehavior
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.SinkBehavior.html
2021-11-23 16:24:04 +01:00
- name : )
- uid : TinyLife.Actions.MultiAction
commentId : T:TinyLife.Actions.MultiAction
parent : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.MultiAction.html
2021-11-23 16:24:04 +01:00
name : MultiAction
nameWithType : MultiAction
fullName : TinyLife.Actions.MultiAction
- 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)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-11-23 16:24:04 +01: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 : '>'
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
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 : )
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01:00
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Actions
commentId : N : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-11-23 16:24:04 +01:00
name : TinyLife.Actions
nameWithType : TinyLife.Actions
fullName : TinyLife.Actions
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
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
2021-11-23 16:24:04 +01:00
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-11-23 16:24:04 +01: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
2021-11-23 16:24:04 +01:00
- uid : TinyLife.Actions.Behaviors.SinkBehavior.#ctor*
commentId : Overload:TinyLife.Actions.Behaviors.SinkBehavior.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.SinkBehavior.html#TinyLife_Actions_Behaviors_SinkBehavior__ctor_TinyLife_Actions_Action_
2021-11-23 16:24:04 +01:00
name : SinkBehavior
nameWithType : SinkBehavior.SinkBehavior
fullName : TinyLife.Actions.Behaviors.SinkBehavior.SinkBehavior
2023-03-30 18:07:55 +02:00
nameWithType.vb : SinkBehavior.New
fullName.vb : TinyLife.Actions.Behaviors.SinkBehavior.New
name.vb : New
2021-11-23 16:24:04 +01:00
- uid : TinyLife.Actions.Action
commentId : T:TinyLife.Actions.Action
parent : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html
2021-11-23 16:24:04 +01:00
name : Action
nameWithType : Action
fullName : TinyLife.Actions.Action
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.BehaviorAction.CreateFirstActions
commentId : M:TinyLife.Actions.BehaviorAction.CreateFirstActions
parent : TinyLife.Actions.BehaviorAction
href : TinyLife.Actions.BehaviorAction.html#TinyLife_Actions_BehaviorAction_CreateFirstActions
name : CreateFirstActions()
nameWithType : BehaviorAction.CreateFirstActions()
fullName : TinyLife.Actions.BehaviorAction.CreateFirstActions()
spec.csharp :
- uid : TinyLife.Actions.BehaviorAction.CreateFirstActions
name : CreateFirstActions
href : TinyLife.Actions.BehaviorAction.html#TinyLife_Actions_BehaviorAction_CreateFirstActions
- name : (
- name : )
spec.vb :
- uid : TinyLife.Actions.BehaviorAction.CreateFirstActions
name : CreateFirstActions
href : TinyLife.Actions.BehaviorAction.html#TinyLife_Actions_BehaviorAction_CreateFirstActions
- name : (
- name : )
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
commentId : M:TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
parent : TinyLife.Actions.Behaviors.ActionBehavior
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateFirstActions
2021-11-23 16:24:04 +01:00
name : CreateFirstActions()
2022-12-20 13:25:03 +01:00
nameWithType : ActionBehavior.CreateFirstActions()
fullName : TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions()
2021-11-23 16:24:04 +01:00
spec.csharp :
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
2021-11-23 16:24:04 +01:00
name : CreateFirstActions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateFirstActions
2021-11-23 16:24:04 +01:00
- name : (
- name : )
spec.vb :
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
2021-11-23 16:24:04 +01:00
name : CreateFirstActions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_CreateFirstActions
2021-11-23 16:24:04 +01:00
- name : (
- name : )
- uid : TinyLife.Actions.Behaviors.SinkBehavior.CreateFirstActions*
commentId : Overload:TinyLife.Actions.Behaviors.SinkBehavior.CreateFirstActions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.SinkBehavior.html#TinyLife_Actions_Behaviors_SinkBehavior_CreateFirstActions
2021-11-23 16:24:04 +01:00
name : CreateFirstActions
nameWithType : SinkBehavior.CreateFirstActions
fullName : TinyLife.Actions.Behaviors.SinkBehavior.CreateFirstActions
- uid : System.Collections.Generic.IEnumerable{TinyLife.Actions.Action}
commentId : T:System.Collections.Generic.IEnumerable{TinyLife.Actions.Action}
parent : System.Collections.Generic
definition : System.Collections.Generic.IEnumerable`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-11-23 16:24:04 +01:00
name : IEnumerable<Action>
nameWithType : IEnumerable<Action>
fullName : System.Collections.Generic.IEnumerable<TinyLife.Actions.Action>
nameWithType.vb : IEnumerable(Of Action)
fullName.vb : System.Collections.Generic.IEnumerable(Of TinyLife.Actions.Action)
name.vb : IEnumerable(Of Action)
spec.csharp :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-11-23 16:24:04 +01:00
- name : <
- uid : TinyLife.Actions.Action
name : Action
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html
2021-11-23 16:24:04 +01:00
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
2021-11-23 16:24:04 +01:00
- uid : TinyLife.Actions.Action
name : Action
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html
2021-11-23 16:24:04 +01:00
- name : )
- uid : System.Collections.Generic.IEnumerable`1
commentId : T:System.Collections.Generic.IEnumerable`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-11-23 16:24:04 +01:00
name : IEnumerable<T>
nameWithType : IEnumerable<T>
fullName : System.Collections.Generic.IEnumerable<T>
nameWithType.vb : IEnumerable(Of T)
fullName.vb : System.Collections.Generic.IEnumerable(Of T)
name.vb : IEnumerable(Of T)
spec.csharp :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-11-23 16:24:04 +01:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
2021-11-23 16:24:04 +01:00
- name : T
- name : )
- uid : System.Collections.Generic
commentId : N : System.Collections.Generic
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.Collections.Generic
nameWithType : System.Collections.Generic
fullName : System.Collections.Generic
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.Generic
name : Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.Generic
name : Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic
2024-01-07 16:53:47 +01:00
- 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
2022-09-05 14:19:42 +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)
2021-11-23 16:24:04 +01:00
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-03-30 18:07:55 +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)
2021-11-23 16:24:04 +01:00
spec.csharp :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-11-23 16:24:04 +01:00
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_
2021-11-23 16:24:04 +01:00
- 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.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-11-23 16:24:04 +01:00
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_
2021-11-23 16:24:04 +01:00
- 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.SinkBehavior.Update*
commentId : Overload:TinyLife.Actions.Behaviors.SinkBehavior.Update
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.SinkBehavior.html#TinyLife_Actions_Behaviors_SinkBehavior_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2021-11-23 16:24:04 +01:00
name : Update
nameWithType : SinkBehavior.Update
fullName : TinyLife.Actions.Behaviors.SinkBehavior.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-23 16:24:04 +01:00
- 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
2021-11-23 16:24:04 +01:00
name : TimeSpan
nameWithType : TimeSpan
fullName : System.TimeSpan
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
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 : )
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.ActionBehavior.html#TinyLife_Actions_Behaviors_ActionBehavior_OnCompleted_TinyLife_Actions_CompletionType_
2021-11-23 16:24:04 +01: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_
2021-11-23 16:24:04 +01:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-11-23 16:24:04 +01: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_
2021-11-23 16:24:04 +01:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-11-23 16:24:04 +01:00
- name : )
- uid : TinyLife.Actions.Behaviors.SinkBehavior.OnCompleted*
commentId : Overload:TinyLife.Actions.Behaviors.SinkBehavior.OnCompleted
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Behaviors.SinkBehavior.html#TinyLife_Actions_Behaviors_SinkBehavior_OnCompleted_TinyLife_Actions_CompletionType_
2021-11-23 16:24:04 +01:00
name : OnCompleted
nameWithType : SinkBehavior.OnCompleted
fullName : TinyLife.Actions.Behaviors.SinkBehavior.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
2021-11-23 16:24:04 +01:00
name : CompletionType
nameWithType : CompletionType
fullName : TinyLife.Actions.CompletionType