2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items :
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler
commentId : T:TinyLife.Actions.Handlers.UnderlyingActionHandler
2021-10-14 20:30:40 +02:00
id : UnderlyingActionHandler
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers
2021-08-04 06:51:12 +02:00
children :
2022-11-12 13:53:28 +01:00
- TinyLife.Actions.Handlers.UnderlyingActionHandler.#ctor(TinyLife.Actions.Action)
2022-01-01 17:06:03 +01:00
- TinyLife.Actions.Handlers.UnderlyingActionHandler.Action
2023-03-30 18:07:55 +02:00
- TinyLife.Actions.Handlers.UnderlyingActionHandler.InitializeExact(TinyLife.Actions.Action)
2024-01-07 16:53:47 +01:00
- TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize``1(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
2022-01-01 17:06:03 +01:00
- TinyLife.Actions.Handlers.UnderlyingActionHandler.IsCompleted
- TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
2022-09-05 14:19:42 +02:00
- TinyLife.Actions.Handlers.UnderlyingActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2024-10-17 17:28:12 +02:00
- TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.PersonLike,TinyLife.Utilities.AppliedMigrations)
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
2021-10-14 20:30:40 +02:00
name : UnderlyingActionHandler
nameWithType : UnderlyingActionHandler
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler
2021-08-04 06:51:12 +02:00
type : Class
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
2024-01-07 16:53:47 +01:00
summary : >-
An UnderlyingAction is a class that can instantiate a single <xref href="TinyLife.Actions.Handlers.UnderlyingActionHandler.Action" data-throw-if-not-resolved="false"></xref> that will be executed as part of the action it is used in.
2024-10-17 17:28:12 +02:00
Note that, when using this class, <xref href="TinyLife.Actions.Handlers.UnderlyingActionHandler.Update(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)" data-throw-if-not-resolved="false"></xref>, <xref href="TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate(TinyLife.Actions.Action%2cTinyLife.Objects.PersonLike%2cTinyLife.Utilities.AppliedMigrations)" data-throw-if-not-resolved="false"></xref> and especially <xref href="TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted(TinyLife.Actions.CompletionType)" data-throw-if-not-resolved="false"></xref> have to be called in the appropriate places.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
[ DataContract]
2021-10-14 20:30:40 +02:00
public class UnderlyingActionHandler
2021-08-04 06:51:12 +02:00
content.vb : >-
<DataContract>
2021-10-14 20:30:40 +02:00
Public Class UnderlyingActionHandler
2021-08-04 06:51:12 +02:00
inheritance :
- System.Object
inheritedMembers :
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
extensionMethods :
2022-01-01 17:06:03 +01:00
- TinyLife.Actions.Handlers.UnderlyingActionHandler.TinyLife.Utilities.Extensions.JsonCopy``1
2021-08-04 06:51:12 +02:00
attributes :
- type : System.Runtime.Serialization.DataContractAttribute
ctor : System.Runtime.Serialization.DataContractAttribute.#ctor
arguments : [ ]
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Action
commentId : P:TinyLife.Actions.Handlers.UnderlyingActionHandler.Action
2021-08-04 06:51:12 +02:00
id : Action
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers.UnderlyingActionHandler
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
name : Action
2021-10-14 20:30:40 +02:00
nameWithType : UnderlyingActionHandler.Action
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.Action
2021-08-04 06:51:12 +02:00
type : Property
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
2024-01-07 16:53:47 +01:00
summary : >-
The underlying action.
This should be initialized using <xref href="TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize%60%601(TinyLife.Actions.ActionType%2cTinyLife.Actions.ActionInfo%2cSystem.Boolean)" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
2022-01-01 17:06:03 +01:00
[ DataMember]
2021-08-04 06:51:12 +02:00
2022-11-12 13:53:28 +01:00
public Action Action { get; }
2021-08-04 06:51:12 +02:00
parameters : [ ]
return :
2022-11-12 13:53:28 +01:00
type : TinyLife.Actions.Action
2021-08-04 06:51:12 +02:00
content.vb : >-
2022-01-01 17:06:03 +01:00
<DataMember>
2021-08-04 06:51:12 +02:00
2023-03-30 18:07:55 +02:00
Public Property Action As Action
2022-01-01 17:06:03 +01:00
overload : TinyLife.Actions.Handlers.UnderlyingActionHandler.Action*
2021-08-04 06:51:12 +02:00
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.#ctor(TinyLife.Actions.Action)
commentId : M:TinyLife.Actions.Handlers.UnderlyingActionHandler.#ctor(TinyLife.Actions.Action)
id : '#ctor(TinyLife.Actions.Action)'
2022-05-24 13:36:05 +02:00
parent : TinyLife.Actions.Handlers.UnderlyingActionHandler
langs :
- csharp
- vb
2022-11-12 13:53:28 +01:00
name : UnderlyingActionHandler(Action)
nameWithType : UnderlyingActionHandler.UnderlyingActionHandler(Action)
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.UnderlyingActionHandler(TinyLife.Actions.Action)
2022-05-24 13:36:05 +02:00
type : Constructor
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Handlers
2024-01-07 16:53:47 +01:00
summary : Creates a new <xref href="TinyLife.Actions.Handlers.UnderlyingActionHandler" data-throw-if-not-resolved="false"></xref> with the given containing action.
2022-05-24 13:36:05 +02:00
example : [ ]
syntax :
2022-11-12 13:53:28 +01:00
content : public UnderlyingActionHandler(Action containingAction)
2022-05-24 13:36:05 +02:00
parameters :
- id : containingAction
2022-11-12 13:53:28 +01:00
type : TinyLife.Actions.Action
2022-05-24 13:36:05 +02:00
description : The action that contains this underlying action handler.
2022-11-12 13:53:28 +01:00
content.vb : Public Sub New(containingAction As Action)
2022-05-24 13:36:05 +02:00
overload : TinyLife.Actions.Handlers.UnderlyingActionHandler.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : UnderlyingActionHandler.New(Action)
fullName.vb : TinyLife.Actions.Handlers.UnderlyingActionHandler.New(TinyLife.Actions.Action)
name.vb : New(Action)
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize``1(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
commentId : M:TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize``1(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
id : Initialize``1(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers.UnderlyingActionHandler
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Initialize<T>(ActionType, ActionInfo, bool)
nameWithType : UnderlyingActionHandler.Initialize<T>(ActionType, ActionInfo, bool)
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize<T>(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, bool)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
2024-01-07 16:53:47 +01:00
summary : Initializes the underlying action of this action
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content: 'public T Initialize<T>(ActionType type, ActionInfo info, bool force = true) where T : Action'
2021-08-04 06:51:12 +02:00
parameters :
- id : type
type : TinyLife.Actions.ActionType
description : The type of action to initialize
- id : info
type : TinyLife.Actions.ActionInfo
description : The info to pass to the action
- id : force
type : System.Boolean
2024-06-09 17:05:30 +02:00
description : Whether the action should be created even if <xref href="TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType%2cTinyLife.Actions.ActionInfo%2cSystem.Boolean)" data-throw-if-not-resolved="false"></xref> returns false
2023-03-30 18:07:55 +02:00
typeParameters :
- id : T
2021-08-04 06:51:12 +02:00
return :
2023-03-30 18:07:55 +02:00
type : '{T}'
content.vb : Public Function Initialize(Of T As Action)(type As ActionType, info As ActionInfo, force As Boolean = True) As T
2022-01-01 17:06:03 +01:00
overload : TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize*
2023-03-30 18:07:55 +02:00
nameWithType.vb : UnderlyingActionHandler.Initialize(Of T)(ActionType, ActionInfo, Boolean)
fullName.vb : TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize(Of T)(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, Boolean)
name.vb : Initialize(Of T)(ActionType, ActionInfo, Boolean)
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.InitializeExact(TinyLife.Actions.Action)
commentId : M:TinyLife.Actions.Handlers.UnderlyingActionHandler.InitializeExact(TinyLife.Actions.Action)
id : InitializeExact(TinyLife.Actions.Action)
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers.UnderlyingActionHandler
2021-08-30 20:44:32 +02:00
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : InitializeExact(Action)
nameWithType : UnderlyingActionHandler.InitializeExact(Action)
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.InitializeExact(TinyLife.Actions.Action)
2021-08-30 20:44:32 +02:00
type : Method
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
2024-01-07 16:53:47 +01:00
summary : >-
Initializes the underlying action of this action using the given <xref href="TinyLife.Actions.Handlers.UnderlyingActionHandler.Action" data-throw-if-not-resolved="false"></xref>.
2024-06-09 17:05:30 +02:00
If <xref href="TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType%2cTinyLife.Actions.ActionInfo%2cSystem.Boolean)" data-throw-if-not-resolved="false"></xref> should be tested, <xref href="TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize%60%601(TinyLife.Actions.ActionType%2cTinyLife.Actions.ActionInfo%2cSystem.Boolean)" data-throw-if-not-resolved="false"></xref> can be used instead.
2021-08-30 20:44:32 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public void InitializeExact(Action action)
2021-08-30 20:44:32 +02:00
parameters :
- id : action
2022-11-12 13:53:28 +01:00
type : TinyLife.Actions.Action
2021-08-30 20:44:32 +02:00
description : The action to initialize
2023-03-30 18:07:55 +02:00
content.vb : Public Sub InitializeExact(action As Action)
2022-01-01 17:06:03 +01:00
overload : TinyLife.Actions.Handlers.UnderlyingActionHandler.InitializeExact*
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId : M:TinyLife.Actions.Handlers.UnderlyingActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
id : Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers.UnderlyingActionHandler
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Update(GameTime, TimeSpan, float)
nameWithType : UnderlyingActionHandler.Update(GameTime, TimeSpan, float)
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
2024-01-07 16:53:47 +01:00
summary : >-
Updates the <xref href="TinyLife.Actions.Handlers.UnderlyingActionHandler.Action" data-throw-if-not-resolved="false"></xref>, if it exists.
This action should be called at the end of <xref href="TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)" data-throw-if-not-resolved="false"></xref> or any derived methods.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2021-11-26 23:42:22 +01:00
content : public void Update(GameTime time, TimeSpan passedInGame, float speedMultiplier)
2021-08-04 06:51:12 +02:00
parameters :
- id : time
2022-09-05 14:19:42 +02:00
type : Microsoft.Xna.Framework.GameTime
2021-08-04 06:51:12 +02:00
description : The current game time
- id : passedInGame
type : System.TimeSpan
description : The amount of time that has passed, in game time
2021-11-26 23:42:22 +01:00
- id : speedMultiplier
type : System.Single
description : The game speed multiplier, which represents how fast things should happen, which is usually determined by <xref href="TinyLife.GameImpl.Speed" data-throw-if-not-resolved="false"></xref>
content.vb : Public Sub Update(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single)
2022-01-01 17:06:03 +01:00
overload : TinyLife.Actions.Handlers.UnderlyingActionHandler.Update*
2023-03-30 18:07:55 +02:00
nameWithType.vb : UnderlyingActionHandler.Update(GameTime, TimeSpan, Single)
fullName.vb : TinyLife.Actions.Handlers.UnderlyingActionHandler.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb : Update(GameTime, TimeSpan, Single)
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.PersonLike,TinyLife.Utilities.AppliedMigrations)
commentId : M:TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.PersonLike,TinyLife.Utilities.AppliedMigrations)
id : Validate(TinyLife.Actions.Action,TinyLife.Objects.PersonLike,TinyLife.Utilities.AppliedMigrations)
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers.UnderlyingActionHandler
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
2024-10-17 17:28:12 +02:00
name : Validate(Action, PersonLike, AppliedMigrations)
nameWithType : UnderlyingActionHandler.Validate(Action, PersonLike, AppliedMigrations)
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate(TinyLife.Actions.Action, TinyLife.Objects.PersonLike, TinyLife.Utilities.AppliedMigrations)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
2024-01-07 16:53:47 +01:00
summary : >-
Validates this action container and its <xref href="TinyLife.Actions.Handlers.UnderlyingActionHandler.Action" data-throw-if-not-resolved="false"></xref>.
2024-10-17 17:28:12 +02:00
This method should be called in <xref href="TinyLife.Actions.Action.Validate(TinyLife.Objects.PersonLike%2cTinyLife.Utilities.AppliedMigrations)" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2024-10-17 17:28:12 +02:00
content : public bool Validate(Action containingAction, PersonLike person, AppliedMigrations appliedMigrations)
2021-08-04 06:51:12 +02:00
parameters :
2022-05-24 13:36:05 +02:00
- id : containingAction
2022-11-12 13:53:28 +01:00
type : TinyLife.Actions.Action
2022-05-24 13:36:05 +02:00
description : The action that contains this underlying action handler.
2021-08-04 06:51:12 +02:00
- id : person
2024-06-09 17:05:30 +02:00
type : TinyLife.Objects.PersonLike
2024-10-17 17:28:12 +02:00
description : The person that is passed to the <code class="paramref">containingAction</code>'s <xref href="TinyLife.Actions.Action.Validate(TinyLife.Objects.PersonLike%2cTinyLife.Utilities.AppliedMigrations)" data-throw-if-not-resolved="false"></xref> method.
- id : appliedMigrations
type : TinyLife.Utilities.AppliedMigrations
description : The set of migrations that have already been applied on this object.
2022-01-01 17:06:03 +01:00
return :
type : System.Boolean
2022-05-24 13:36:05 +02:00
description : Whether this underlying action handler is still valid.
2024-10-17 17:28:12 +02:00
content.vb : Public Function Validate(containingAction As Action, person As PersonLike, appliedMigrations As AppliedMigrations) As Boolean
2022-01-01 17:06:03 +01:00
overload : TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate*
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.IsCompleted
commentId : M:TinyLife.Actions.Handlers.UnderlyingActionHandler.IsCompleted
id : IsCompleted
parent : TinyLife.Actions.Handlers.UnderlyingActionHandler
langs :
- csharp
- vb
name : IsCompleted()
nameWithType : UnderlyingActionHandler.IsCompleted()
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.IsCompleted()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Handlers
2024-04-14 17:55:54 +02:00
summary : Returns whether the current <xref href="TinyLife.Actions.Handlers.UnderlyingActionHandler.Action" data-throw-if-not-resolved="false"></xref> is completed, or returns <xref href="TinyLife.Actions.CompletionType.Completed" data-throw-if-not-resolved="false"></xref> if there is no current or previously executed action.
2022-01-01 17:06:03 +01:00
example : [ ]
syntax :
content : public CompletionType IsCompleted()
return :
type : TinyLife.Actions.CompletionType
description : Whether this underlying action handler is completed.
2023-03-30 18:07:55 +02:00
content.vb : Public Function IsCompleted() As CompletionType
2022-01-01 17:06:03 +01:00
overload : TinyLife.Actions.Handlers.UnderlyingActionHandler.IsCompleted*
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
2021-10-14 20:30:40 +02:00
id : OnCompleted(TinyLife.Actions.CompletionType)
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers.UnderlyingActionHandler
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
2021-10-14 20:30:40 +02:00
name : OnCompleted(CompletionType)
nameWithType : UnderlyingActionHandler.OnCompleted(CompletionType)
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
2024-01-07 16:53:47 +01:00
summary : >-
Calls this underlying action's <xref href="TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)" data-throw-if-not-resolved="false"></xref> method.
This should be called for any completion type that the action that uses this underlying action experiences, even <xref href="TinyLife.Actions.CompletionType.Canceled" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.Actions.CompletionType.Failed" data-throw-if-not-resolved="false"></xref>.
If the underlying action is null or already completed, this method has no effect.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2022-01-01 17:06:03 +01:00
content : public bool OnCompleted(CompletionType type)
2021-08-04 06:51:12 +02:00
parameters :
- id : type
2021-10-14 20:30:40 +02:00
type : TinyLife.Actions.CompletionType
2021-08-04 06:51:12 +02:00
description : The completion type
2022-01-01 17:06:03 +01:00
return :
type : System.Boolean
description : Whether the completion type was consumed by this underlying action handler
content.vb : Public Function OnCompleted(type As CompletionType) As Boolean
overload : TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted*
2021-08-04 06:51:12 +02:00
references :
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Action
commentId : P:TinyLife.Actions.Handlers.UnderlyingActionHandler.Action
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Action
2023-03-30 18:07:55 +02:00
name : Action
nameWithType : UnderlyingActionHandler.Action
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.Action
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId : M:TinyLife.Actions.Handlers.UnderlyingActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-08-04 06:51:12 +02:00
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2023-03-30 18:07:55 +02:00
name : Update(GameTime, TimeSpan, float)
nameWithType : UnderlyingActionHandler.Update(GameTime, TimeSpan, float)
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb : UnderlyingActionHandler.Update(GameTime, TimeSpan, Single)
fullName.vb : TinyLife.Actions.Handlers.UnderlyingActionHandler.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb : Update(GameTime, TimeSpan, Single)
spec.csharp :
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name : Update
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2023-03-30 18:07:55 +02:00
- name : (
- uid : Microsoft.Xna.Framework.GameTime
name : GameTime
isExternal : true
- name : ','
- name : " "
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
spec.vb :
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name : Update
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2023-03-30 18:07:55 +02:00
- name : (
- uid : Microsoft.Xna.Framework.GameTime
name : GameTime
isExternal : true
- name : ','
- name : " "
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.PersonLike,TinyLife.Utilities.AppliedMigrations)
commentId : M:TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.PersonLike,TinyLife.Utilities.AppliedMigrations)
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Validate_TinyLife_Actions_Action_TinyLife_Objects_PersonLike_TinyLife_Utilities_AppliedMigrations_
name : Validate(Action, PersonLike, AppliedMigrations)
nameWithType : UnderlyingActionHandler.Validate(Action, PersonLike, AppliedMigrations)
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate(TinyLife.Actions.Action, TinyLife.Objects.PersonLike, TinyLife.Utilities.AppliedMigrations)
2023-03-30 18:07:55 +02:00
spec.csharp :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.PersonLike,TinyLife.Utilities.AppliedMigrations)
2023-03-30 18:07:55 +02:00
name : Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Validate_TinyLife_Actions_Action_TinyLife_Objects_PersonLike_TinyLife_Utilities_AppliedMigrations_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Actions.Action
name : Action
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2024-10-17 17:28:12 +02:00
- name : ','
- name : " "
- uid : TinyLife.Utilities.AppliedMigrations
name : AppliedMigrations
href : TinyLife.Utilities.AppliedMigrations.html
2023-03-30 18:07:55 +02:00
- name : )
spec.vb :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.PersonLike,TinyLife.Utilities.AppliedMigrations)
2023-03-30 18:07:55 +02:00
name : Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Validate_TinyLife_Actions_Action_TinyLife_Objects_PersonLike_TinyLife_Utilities_AppliedMigrations_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Actions.Action
name : Action
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2024-10-17 17:28:12 +02:00
- name : ','
- name : " "
- uid : TinyLife.Utilities.AppliedMigrations
name : AppliedMigrations
href : TinyLife.Utilities.AppliedMigrations.html
2023-03-30 18:07:55 +02:00
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_OnCompleted_TinyLife_Actions_CompletionType_
2023-03-30 18:07:55 +02:00
name : OnCompleted(CompletionType)
nameWithType : UnderlyingActionHandler.OnCompleted(CompletionType)
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
spec.csharp :
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
name : OnCompleted
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_OnCompleted_TinyLife_Actions_CompletionType_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : )
spec.vb :
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
name : OnCompleted
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_OnCompleted_TinyLife_Actions_CompletionType_
2023-03-30 18:07:55 +02:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers
commentId : N : TinyLife.Actions.Handlers
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2022-01-01 17:06:03 +01:00
name : TinyLife.Actions.Handlers
nameWithType : TinyLife.Actions.Handlers
fullName : TinyLife.Actions.Handlers
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.Handlers
name : Handlers
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.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.Handlers
name : Handlers
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.html
2021-08-04 06:51:12 +02:00
- uid : System.Object
commentId : T:System.Object
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
name : object
nameWithType : object
fullName : object
nameWithType.vb : Object
fullName.vb : Object
name.vb : Object
2021-08-04 06:51:12 +02:00
- uid : System.Object.Equals(System.Object)
commentId : M:System.Object.Equals(System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name : Equals(object)
nameWithType : object.Equals(object)
fullName : object.Equals(object)
nameWithType.vb : Object.Equals(Object)
fullName.vb : Object.Equals(Object)
name.vb : Equals(Object)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Object.Equals(System.Object,System.Object)
commentId : M:System.Object.Equals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name : Equals(object, object)
nameWithType : object.Equals(object, object)
fullName : object.Equals(object, object)
nameWithType.vb : Object.Equals(Object, Object)
fullName.vb : Object.Equals(Object, Object)
name.vb : Equals(Object, Object)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Object.GetHashCode
commentId : M:System.Object.GetHashCode
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
name : GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetHashCode()
fullName : object.GetHashCode()
nameWithType.vb : Object.GetHashCode()
fullName.vb : Object.GetHashCode()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : System.Object.GetType
commentId : M:System.Object.GetType
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
name : GetType()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetType()
fullName : object.GetType()
nameWithType.vb : Object.GetType()
fullName.vb : Object.GetType()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
name : MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType : object.MemberwiseClone()
fullName : object.MemberwiseClone()
nameWithType.vb : Object.MemberwiseClone()
fullName.vb : Object.MemberwiseClone()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
commentId : M:System.Object.ReferenceEquals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name : ReferenceEquals(object, object)
nameWithType : object.ReferenceEquals(object, object)
fullName : object.ReferenceEquals(object, object)
nameWithType.vb : Object.ReferenceEquals(Object, Object)
fullName.vb : Object.ReferenceEquals(Object, Object)
name.vb : ReferenceEquals(Object, Object)
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name : )
- uid : System.Object.ToString
commentId : M:System.Object.ToString
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
name : ToString()
2023-03-30 18:07:55 +02:00
nameWithType : object.ToString()
fullName : object.ToString()
nameWithType.vb : Object.ToString()
fullName.vb : Object.ToString()
2021-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
- name : (
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.TinyLife.Utilities.Extensions.JsonCopy``1
2021-08-04 06:51:12 +02:00
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<UnderlyingActionHandler>(UnderlyingActionHandler)
nameWithType : Extensions.JsonCopy<UnderlyingActionHandler>(UnderlyingActionHandler)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.Handlers.UnderlyingActionHandler>(TinyLife.Actions.Handlers.UnderlyingActionHandler)
nameWithType.vb : Extensions.JsonCopy(Of UnderlyingActionHandler)(UnderlyingActionHandler)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.Handlers.UnderlyingActionHandler)(TinyLife.Actions.Handlers.UnderlyingActionHandler)
name.vb : JsonCopy(Of UnderlyingActionHandler)(UnderlyingActionHandler)
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Handlers.UnderlyingActionHandler)
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.Handlers.UnderlyingActionHandler
name : UnderlyingActionHandler
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html
2023-03-30 18:07:55 +02:00
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler
name : UnderlyingActionHandler
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Handlers.UnderlyingActionHandler)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler
name : UnderlyingActionHandler
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html
2023-03-30 18:07:55 +02:00
- name : )
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler
name : UnderlyingActionHandler
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html
2021-08-04 06:51:12 +02:00
- name : )
- uid : System
commentId : N : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2021-08-04 06:51:12 +02:00
name : System
nameWithType : System
fullName : System
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-08-04 06:51:12 +02:00
name : JsonCopy<T>(T)
nameWithType : Extensions.JsonCopy<T>(T)
fullName : TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb : Extensions.JsonCopy(Of T)(T)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb : JsonCopy(Of T)(T)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
- name : T
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- name : T
- name : )
2021-08-04 06:51:12 +02:00
- name : (
- name : T
- name : )
- uid : TinyLife.Utilities.Extensions
commentId : T:TinyLife.Utilities.Extensions
parent : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html
2021-08-04 06:51:12 +02:00
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-08-04 06:51:12 +02:00
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize``1(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
commentId : M:TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize``1(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
2021-08-04 06:51:12 +02:00
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Initialize__1_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
name : Initialize<T>(ActionType, ActionInfo, bool)
nameWithType : UnderlyingActionHandler.Initialize<T>(ActionType, ActionInfo, bool)
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize<T>(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, bool)
nameWithType.vb : UnderlyingActionHandler.Initialize(Of T)(ActionType, ActionInfo, Boolean)
fullName.vb : TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize(Of T)(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, Boolean)
name.vb : Initialize(Of T)(ActionType, ActionInfo, Boolean)
spec.csharp :
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize``1(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
name : Initialize
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Initialize__1_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
- name : (
- uid : TinyLife.Actions.ActionType
name : ActionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
spec.vb :
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize``1(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
name : Initialize
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Initialize__1_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- name : T
- name : )
- name : (
- uid : TinyLife.Actions.ActionType
name : ActionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Action*
commentId : Overload:TinyLife.Actions.Handlers.UnderlyingActionHandler.Action
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Action
2021-08-04 06:51:12 +02:00
name : Action
2021-10-14 20:30:40 +02:00
nameWithType : UnderlyingActionHandler.Action
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.Action
2022-11-12 13:53:28 +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
2022-11-12 13:53:28 +01:00
name : Action
nameWithType : Action
fullName : TinyLife.Actions.Action
- uid : TinyLife.Actions
commentId : N : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2022-11-12 13:53:28 +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
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler
commentId : T:TinyLife.Actions.Handlers.UnderlyingActionHandler
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html
2022-05-24 13:36:05 +02:00
name : UnderlyingActionHandler
nameWithType : UnderlyingActionHandler
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.#ctor*
commentId : Overload:TinyLife.Actions.Handlers.UnderlyingActionHandler.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler__ctor_TinyLife_Actions_Action_
2022-05-24 13:36:05 +02:00
name : UnderlyingActionHandler
nameWithType : UnderlyingActionHandler.UnderlyingActionHandler
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.UnderlyingActionHandler
2023-03-30 18:07:55 +02:00
nameWithType.vb : UnderlyingActionHandler.New
fullName.vb : TinyLife.Actions.Handlers.UnderlyingActionHandler.New
name.vb : New
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
commentId : M:TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
parent : TinyLife.Objects.PersonLike
2021-08-04 06:51:12 +02:00
isExternal : true
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_CanExecuteAction_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
2023-05-11 14:56:06 +02:00
name : CanExecuteAction(ActionType, ActionInfo, bool)
2024-06-09 17:05:30 +02:00
nameWithType : PersonLike.CanExecuteAction(ActionType, ActionInfo, bool)
fullName : TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, bool)
nameWithType.vb : PersonLike.CanExecuteAction(ActionType, ActionInfo, Boolean)
fullName.vb : TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType, TinyLife.Actions.ActionInfo, Boolean)
2023-05-11 14:56:06 +02:00
name.vb : CanExecuteAction(ActionType, ActionInfo, Boolean)
2023-03-30 18:07:55 +02:00
spec.csharp :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
2023-05-11 14:56:06 +02:00
name : CanExecuteAction
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_CanExecuteAction_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : (
2023-05-11 14:56:06 +02:00
- uid : TinyLife.Actions.ActionType
name : ActionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html
2023-05-11 14:56:06 +02:00
- name : ','
- name : " "
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Boolean
name : bool
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
spec.vb :
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike.CanExecuteAction(TinyLife.Actions.ActionType,TinyLife.Actions.ActionInfo,System.Boolean)
2023-05-11 14:56:06 +02:00
name : CanExecuteAction
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.PersonLike.html#TinyLife_Objects_PersonLike_CanExecuteAction_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
2023-03-30 18:07:55 +02:00
- name : (
2023-05-11 14:56:06 +02:00
- uid : TinyLife.Actions.ActionType
name : ActionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html
2023-05-11 14:56:06 +02:00
- name : ','
- name : " "
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.ActionInfo
name : ActionInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : System.Boolean
name : Boolean
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize*
commentId : Overload:TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Initialize__1_TinyLife_Actions_ActionType_TinyLife_Actions_ActionInfo_System_Boolean_
2021-08-04 06:51:12 +02:00
name : Initialize
2021-10-14 20:30:40 +02:00
nameWithType : UnderlyingActionHandler.Initialize
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.Initialize
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Actions.ActionType
commentId : T:TinyLife.Actions.ActionType
parent : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html
2021-08-04 06:51:12 +02:00
name : ActionType
nameWithType : ActionType
fullName : TinyLife.Actions.ActionType
- uid : TinyLife.Actions.ActionInfo
commentId : T:TinyLife.Actions.ActionInfo
parent : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionInfo.html
2021-08-04 06:51:12 +02:00
name : ActionInfo
nameWithType : ActionInfo
fullName : TinyLife.Actions.ActionInfo
- uid : System.Boolean
commentId : T:System.Boolean
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : bool
nameWithType : bool
fullName : bool
nameWithType.vb : Boolean
fullName.vb : Boolean
name.vb : Boolean
- uid : '{T}'
commentId : '!:T'
definition : T
name : T
nameWithType : T
fullName : T
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
commentId : T:TinyLife.Objects.PersonLike
parent : TinyLife.Objects
href : TinyLife.Objects.PersonLike.html
name : PersonLike
nameWithType : PersonLike
fullName : TinyLife.Objects.PersonLike
2023-03-30 18:07:55 +02:00
- uid : T
name : T
nameWithType : T
fullName : T
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
href : TinyLife.html
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
spec.csharp :
- uid : TinyLife
name : TinyLife
href : TinyLife.html
- name : .
- uid : TinyLife.Objects
name : Objects
href : TinyLife.Objects.html
spec.vb :
- uid : TinyLife
name : TinyLife
href : TinyLife.html
- name : .
- uid : TinyLife.Objects
name : Objects
href : TinyLife.Objects.html
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.InitializeExact*
commentId : Overload:TinyLife.Actions.Handlers.UnderlyingActionHandler.InitializeExact
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_InitializeExact_TinyLife_Actions_Action_
2021-08-30 20:44:32 +02:00
name : InitializeExact
2021-10-14 20:30:40 +02:00
nameWithType : UnderlyingActionHandler.InitializeExact
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.InitializeExact
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId : M:TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Actions.Action
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html#TinyLife_Actions_Action_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2023-03-30 18:07:55 +02:00
name : Update(GameTime, TimeSpan, float)
nameWithType : Action.Update(GameTime, TimeSpan, float)
fullName : TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb : Action.Update(GameTime, TimeSpan, Single)
fullName.vb : TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb : Update(GameTime, TimeSpan, Single)
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-08-04 06:51:12 +02:00
name : Update
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html#TinyLife_Actions_Action_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2021-08-04 06:51:12 +02:00
- name : (
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
2021-08-04 06:51:12 +02:00
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02: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-08-04 06:51:12 +02:00
- name : )
spec.vb :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-08-04 06:51:12 +02:00
name : Update
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html#TinyLife_Actions_Action_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2021-08-04 06:51:12 +02:00
- name : (
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
2021-08-04 06:51:12 +02:00
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02: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-08-04 06:51:12 +02:00
- name : )
2021-11-26 23:42:22 +01:00
- uid : TinyLife.GameImpl.Speed
commentId : P:TinyLife.GameImpl.Speed
2024-01-07 16:53:47 +01:00
href : TinyLife.GameImpl.html#TinyLife_GameImpl_Speed
2023-03-30 18:07:55 +02:00
name : Speed
nameWithType : GameImpl.Speed
fullName : TinyLife.GameImpl.Speed
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Update*
commentId : Overload:TinyLife.Actions.Handlers.UnderlyingActionHandler.Update
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Update_Microsoft_Xna_Framework_GameTime_System_TimeSpan_System_Single_
2021-08-04 06:51:12 +02:00
name : Update
2021-10-14 20:30:40 +02:00
nameWithType : UnderlyingActionHandler.Update
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.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-08-04 06:51:12 +02:00
isExternal : true
name : GameTime
nameWithType : GameTime
2022-09-05 14:19:42 +02:00
fullName : Microsoft.Xna.Framework.GameTime
2021-08-04 06:51:12 +02: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-08-04 06:51:12 +02: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-10-17 17:28:12 +02:00
- uid : TinyLife.Actions.Action.Validate(TinyLife.Objects.PersonLike,TinyLife.Utilities.AppliedMigrations)
commentId : M:TinyLife.Actions.Action.Validate(TinyLife.Objects.PersonLike,TinyLife.Utilities.AppliedMigrations)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Actions.Action
2024-10-17 17:28:12 +02:00
href : TinyLife.Actions.Action.html#TinyLife_Actions_Action_Validate_TinyLife_Objects_PersonLike_TinyLife_Utilities_AppliedMigrations_
name : Validate(PersonLike, AppliedMigrations)
nameWithType : Action.Validate(PersonLike, AppliedMigrations)
fullName : TinyLife.Actions.Action.Validate(TinyLife.Objects.PersonLike, TinyLife.Utilities.AppliedMigrations)
2021-08-04 06:51:12 +02:00
spec.csharp :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Actions.Action.Validate(TinyLife.Objects.PersonLike,TinyLife.Utilities.AppliedMigrations)
2021-08-04 06:51:12 +02:00
name : Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.Actions.Action.html#TinyLife_Actions_Action_Validate_TinyLife_Objects_PersonLike_TinyLife_Utilities_AppliedMigrations_
2021-08-04 06:51:12 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2024-10-17 17:28:12 +02:00
- name : ','
- name : " "
- uid : TinyLife.Utilities.AppliedMigrations
name : AppliedMigrations
href : TinyLife.Utilities.AppliedMigrations.html
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Actions.Action.Validate(TinyLife.Objects.PersonLike,TinyLife.Utilities.AppliedMigrations)
2021-08-04 06:51:12 +02:00
name : Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.Actions.Action.html#TinyLife_Actions_Action_Validate_TinyLife_Objects_PersonLike_TinyLife_Utilities_AppliedMigrations_
2021-08-04 06:51:12 +02:00
- name : (
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
name : PersonLike
href : TinyLife.Objects.PersonLike.html
2024-10-17 17:28:12 +02:00
- name : ','
- name : " "
- uid : TinyLife.Utilities.AppliedMigrations
name : AppliedMigrations
href : TinyLife.Utilities.AppliedMigrations.html
2021-08-04 06:51:12 +02:00
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate*
commentId : Overload:TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_Validate_TinyLife_Actions_Action_TinyLife_Objects_PersonLike_TinyLife_Utilities_AppliedMigrations_
2021-08-04 06:51:12 +02:00
name : Validate
2021-10-14 20:30:40 +02:00
nameWithType : UnderlyingActionHandler.Validate
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.Validate
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Utilities.AppliedMigrations
commentId : T:TinyLife.Utilities.AppliedMigrations
parent : TinyLife.Utilities
href : TinyLife.Utilities.AppliedMigrations.html
name : AppliedMigrations
nameWithType : AppliedMigrations
fullName : TinyLife.Utilities.AppliedMigrations
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.CompletionType.Completed
commentId : F:TinyLife.Actions.CompletionType.Completed
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html#TinyLife_Actions_CompletionType_Completed
2023-03-30 18:07:55 +02:00
name : Completed
nameWithType : CompletionType.Completed
fullName : TinyLife.Actions.CompletionType.Completed
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.IsCompleted*
commentId : Overload:TinyLife.Actions.Handlers.UnderlyingActionHandler.IsCompleted
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_IsCompleted
2022-01-01 17:06:03 +01:00
name : IsCompleted
nameWithType : UnderlyingActionHandler.IsCompleted
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.IsCompleted
- 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
2022-01-01 17:06:03 +01:00
name : CompletionType
nameWithType : CompletionType
fullName : TinyLife.Actions.CompletionType
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Actions.Action
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html#TinyLife_Actions_Action_OnCompleted_TinyLife_Actions_CompletionType_
2021-10-14 20:30:40 +02:00
name : OnCompleted(CompletionType)
nameWithType : Action.OnCompleted(CompletionType)
fullName : TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
2021-08-04 06:51:12 +02:00
spec.csharp :
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
2021-08-04 06:51:12 +02:00
name : OnCompleted
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html#TinyLife_Actions_Action_OnCompleted_TinyLife_Actions_CompletionType_
2021-08-04 06:51:12 +02:00
- name : (
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
2021-08-04 06:51:12 +02:00
name : OnCompleted
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html#TinyLife_Actions_Action_OnCompleted_TinyLife_Actions_CompletionType_
2021-08-04 06:51:12 +02:00
- name : (
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-08-04 06:51:12 +02:00
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType.Canceled
commentId : F:TinyLife.Actions.CompletionType.Canceled
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html#TinyLife_Actions_CompletionType_Canceled
2023-03-30 18:07:55 +02:00
name : Canceled
nameWithType : CompletionType.Canceled
fullName : TinyLife.Actions.CompletionType.Canceled
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType.Failed
commentId : F:TinyLife.Actions.CompletionType.Failed
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html#TinyLife_Actions_CompletionType_Failed
2023-03-30 18:07:55 +02:00
name : Failed
nameWithType : CompletionType.Failed
fullName : TinyLife.Actions.CompletionType.Failed
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted*
commentId : Overload:TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Handlers.UnderlyingActionHandler.html#TinyLife_Actions_Handlers_UnderlyingActionHandler_OnCompleted_TinyLife_Actions_CompletionType_
2021-08-04 06:51:12 +02:00
name : OnCompleted
2021-10-14 20:30:40 +02:00
nameWithType : UnderlyingActionHandler.OnCompleted
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.UnderlyingActionHandler.OnCompleted