### YamlMime:ManagedReference items: - uid: TinyLife.Actions.Behaviors.ReadBehavior commentId: T:TinyLife.Actions.Behaviors.ReadBehavior id: ReadBehavior parent: TinyLife.Actions.Behaviors children: - TinyLife.Actions.Behaviors.ReadBehavior.#ctor(TinyLife.Actions.Action,System.Func{TinyLife.Objects.FurnitureType},System.Int32[],System.Func{TinyLife.Objects.Furniture,System.Boolean}) - TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask(TinyLife.Actions.Action) - TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress - TinyLife.Actions.Behaviors.ReadBehavior.Initialize langs: - csharp - vb name: ReadBehavior nameWithType: ReadBehavior fullName: TinyLife.Actions.Behaviors.ReadBehavior type: Class source: remote: path: TinyLife/Actions/Behaviors/ReadBehavior.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: ReadBehavior path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs startLine: 9 assemblies: - Tiny Life namespace: TinyLife.Actions.Behaviors summary: "\nAn action behavior that is used for any kind of action that involves reading a book or other type of media.\nA using this behavior will cause the to sit down after using the underlying behavior to pick up or spawn the book.\n" example: [] syntax: content: 'public class ReadBehavior : PickUpOrSpawnBehavior' content.vb: Public Class ReadBehavior Inherits PickUpOrSpawnBehavior inheritance: - System.Object - TinyLife.Actions.Behaviors.ActionBehavior - TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior inheritedMembers: - TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.CreateFirstActions - TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType) - TinyLife.Actions.Behaviors.ActionBehavior.Action - TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions - TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) - TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject - TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType) - TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action) - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString extensionMethods: - TinyLife.Actions.Behaviors.ReadBehavior.TinyLife.Utilities.Extensions.JsonCopy``1 - uid: TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress commentId: P:TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress id: FullyInProgress parent: TinyLife.Actions.Behaviors.ReadBehavior langs: - csharp - vb name: FullyInProgress nameWithType: ReadBehavior.FullyInProgress fullName: TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress type: Property source: remote: path: TinyLife/Actions/Behaviors/ReadBehavior.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: FullyInProgress path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs startLine: 12 assemblies: - Tiny Life namespace: TinyLife.Actions.Behaviors summary: "\nReturns whether this action behavior is fully in progress.\nThis is the action behavior version of .\n" example: [] syntax: content: public override bool FullyInProgress { get; } parameters: [] return: type: System.Boolean content.vb: Public Overrides ReadOnly Property FullyInProgress As Boolean overridden: TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress overload: TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress* - uid: TinyLife.Actions.Behaviors.ReadBehavior.#ctor(TinyLife.Actions.Action,System.Func{TinyLife.Objects.FurnitureType},System.Int32[],System.Func{TinyLife.Objects.Furniture,System.Boolean}) commentId: M:TinyLife.Actions.Behaviors.ReadBehavior.#ctor(TinyLife.Actions.Action,System.Func{TinyLife.Objects.FurnitureType},System.Int32[],System.Func{TinyLife.Objects.Furniture,System.Boolean}) id: '#ctor(TinyLife.Actions.Action,System.Func{TinyLife.Objects.FurnitureType},System.Int32[],System.Func{TinyLife.Objects.Furniture,System.Boolean})' parent: TinyLife.Actions.Behaviors.ReadBehavior langs: - csharp - vb name: ReadBehavior(Action, Func, int[], Func) nameWithType: ReadBehavior.ReadBehavior(Action, Func, int[], Func) fullName: TinyLife.Actions.Behaviors.ReadBehavior.ReadBehavior(TinyLife.Actions.Action, System.Func, int[], System.Func) type: Constructor source: remote: path: TinyLife/Actions/Behaviors/ReadBehavior.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs startLine: 15 assemblies: - Tiny Life namespace: TinyLife.Actions.Behaviors summary: "\nCreates a new pick up or spawn behavior with the given settings.\n" example: [] syntax: content: public ReadBehavior(Action action, Func itemToSpawn, int[] colorsToSpawn = null, Func isValid = null) parameters: - id: action type: TinyLife.Actions.Action description: The action. - id: itemToSpawn type: System.Func{TinyLife.Objects.FurnitureType} description: The item to spawn, or pick up. - id: colorsToSpawn type: System.Int32[] description: The colors to spawn. - id: isValid type: System.Func{TinyLife.Objects.Furniture,System.Boolean} description: Whether the item that we're trying to pick up is valid. If this is null, the item is checked against the itemToSpawn. content.vb: Public Sub New(action As Action, itemToSpawn As Func(Of FurnitureType), colorsToSpawn As Integer() = Nothing, isValid As Func(Of Furniture, Boolean) = Nothing) overload: TinyLife.Actions.Behaviors.ReadBehavior.#ctor* exceptions: - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: Thrown if the itemToSpawn is null. nameWithType.vb: ReadBehavior.New(Action, Func(Of FurnitureType), Integer(), Func(Of Furniture, Boolean)) fullName.vb: TinyLife.Actions.Behaviors.ReadBehavior.New(TinyLife.Actions.Action, System.Func(Of TinyLife.Objects.FurnitureType), Integer(), System.Func(Of TinyLife.Objects.Furniture, Boolean)) name.vb: New(Action, Func(Of FurnitureType), Integer(), Func(Of Furniture, Boolean)) - uid: TinyLife.Actions.Behaviors.ReadBehavior.Initialize commentId: M:TinyLife.Actions.Behaviors.ReadBehavior.Initialize id: Initialize parent: TinyLife.Actions.Behaviors.ReadBehavior langs: - csharp - vb name: Initialize() nameWithType: ReadBehavior.Initialize() fullName: TinyLife.Actions.Behaviors.ReadBehavior.Initialize() type: Method source: remote: path: TinyLife/Actions/Behaviors/ReadBehavior.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Initialize path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs startLine: 18 assemblies: - Tiny Life namespace: TinyLife.Actions.Behaviors summary: "\nInitializes this action behavior.\nThis method is automatically called when using in .\n" example: [] syntax: content: public override void Initialize() content.vb: Public Overrides Sub Initialize() overridden: TinyLife.Actions.Behaviors.ActionBehavior.Initialize overload: TinyLife.Actions.Behaviors.ReadBehavior.Initialize* - uid: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask(TinyLife.Actions.Action) commentId: M:TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask(TinyLife.Actions.Action) id: CanMultitask(TinyLife.Actions.Action) parent: TinyLife.Actions.Behaviors.ReadBehavior langs: - csharp - vb name: CanMultitask(Action) nameWithType: ReadBehavior.CanMultitask(Action) fullName: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask(TinyLife.Actions.Action) type: Method source: remote: path: TinyLife/Actions/Behaviors/ReadBehavior.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanMultitask path: ../TinyLife/Actions/Behaviors/ReadBehavior.cs startLine: 26 assemblies: - Tiny Life namespace: TinyLife.Actions.Behaviors summary: "\nReturn true on this method if this action can be multi-tasked along with the passed .\nA multi-tasking is an action that is currently active along with another action.\nBy default, multi-tasking is disallowed for any action.\n" example: [] syntax: content: public override bool CanMultitask(Action other) parameters: - id: other type: TinyLife.Actions.Action description: The action to multi-task with return: type: System.Boolean description: Whether this action can be multi-tasked content.vb: Public Overrides Function CanMultitask(other As Action) As Boolean overridden: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action) overload: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask* references: - uid: TinyLife.Actions.BehaviorAction`1 commentId: T:TinyLife.Actions.BehaviorAction`1 name: BehaviorAction nameWithType: BehaviorAction fullName: TinyLife.Actions.BehaviorAction nameWithType.vb: BehaviorAction(Of T) fullName.vb: TinyLife.Actions.BehaviorAction(Of T) name.vb: BehaviorAction(Of T) spec.csharp: - uid: TinyLife.Actions.BehaviorAction`1 name: BehaviorAction - name: < - name: T - name: '>' spec.vb: - uid: TinyLife.Actions.BehaviorAction`1 name: BehaviorAction - name: ( - name: Of - name: " " - name: T - name: ) - uid: TinyLife.Objects.Person commentId: T:TinyLife.Objects.Person parent: TinyLife.Objects name: Person nameWithType: Person fullName: TinyLife.Objects.Person - uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior commentId: T:TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior parent: TinyLife.Actions.Behaviors name: PickUpOrSpawnBehavior nameWithType: PickUpOrSpawnBehavior fullName: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior - uid: TinyLife.Actions.Behaviors commentId: N:TinyLife.Actions.Behaviors name: TinyLife.Actions.Behaviors nameWithType: TinyLife.Actions.Behaviors fullName: TinyLife.Actions.Behaviors spec.csharp: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Actions name: Actions - name: . - uid: TinyLife.Actions.Behaviors name: Behaviors spec.vb: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Actions name: Actions - name: . - uid: TinyLife.Actions.Behaviors name: Behaviors - uid: System.Object commentId: T:System.Object parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: object nameWithType: object fullName: object nameWithType.vb: Object fullName.vb: Object name.vb: Object - uid: TinyLife.Actions.Behaviors.ActionBehavior commentId: T:TinyLife.Actions.Behaviors.ActionBehavior parent: TinyLife.Actions.Behaviors name: ActionBehavior nameWithType: ActionBehavior fullName: TinyLife.Actions.Behaviors.ActionBehavior - uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.CreateFirstActions commentId: M:TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.CreateFirstActions parent: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior name: CreateFirstActions() nameWithType: PickUpOrSpawnBehavior.CreateFirstActions() fullName: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.CreateFirstActions() spec.csharp: - uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.CreateFirstActions name: CreateFirstActions - name: ( - name: ) spec.vb: - uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.CreateFirstActions name: CreateFirstActions - name: ( - name: ) - uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType) commentId: M:TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType) parent: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior name: GetNextAction(CompletionType) nameWithType: PickUpOrSpawnBehavior.GetNextAction(CompletionType) fullName: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType) spec.csharp: - uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType) name: GetNextAction - name: ( - uid: TinyLife.Actions.CompletionType name: CompletionType - name: ) spec.vb: - uid: TinyLife.Actions.Behaviors.PickUpOrSpawnBehavior.GetNextAction(TinyLife.Actions.CompletionType) name: GetNextAction - name: ( - uid: TinyLife.Actions.CompletionType name: CompletionType - name: ) - uid: TinyLife.Actions.Behaviors.ActionBehavior.Action commentId: F:TinyLife.Actions.Behaviors.ActionBehavior.Action parent: TinyLife.Actions.Behaviors.ActionBehavior name: Action nameWithType: ActionBehavior.Action fullName: TinyLife.Actions.Behaviors.ActionBehavior.Action - uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions parent: TinyLife.Actions.Behaviors.ActionBehavior name: CreateLastActions() nameWithType: ActionBehavior.CreateLastActions() fullName: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions() spec.csharp: - uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions name: CreateLastActions - name: ( - name: ) spec.vb: - uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions name: CreateLastActions - name: ( - name: ) - uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) parent: TinyLife.Actions.Behaviors.ActionBehavior isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan name: Update(GameTime, TimeSpan, float) nameWithType: ActionBehavior.Update(GameTime, TimeSpan, float) fullName: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float) nameWithType.vb: ActionBehavior.Update(GameTime, TimeSpan, Single) fullName.vb: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single) name.vb: Update(GameTime, TimeSpan, Single) spec.csharp: - uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) name: Update - name: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime isExternal: true - name: ',' - name: " " - uid: System.TimeSpan name: TimeSpan isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) spec.vb: - uid: TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single) name: Update - name: ( - uid: Microsoft.Xna.Framework.GameTime name: GameTime isExternal: true - name: ',' - name: " " - uid: System.TimeSpan name: TimeSpan isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ) - uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject parent: TinyLife.Actions.Behaviors.ActionBehavior name: GetIconObject() nameWithType: ActionBehavior.GetIconObject() fullName: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject() spec.csharp: - uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject name: GetIconObject - name: ( - name: ) spec.vb: - uid: TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject name: GetIconObject - name: ( - name: ) - uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType) commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType) parent: TinyLife.Actions.Behaviors.ActionBehavior name: OnCompleted(CompletionType) nameWithType: ActionBehavior.OnCompleted(CompletionType) fullName: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType) spec.csharp: - uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType) name: OnCompleted - name: ( - uid: TinyLife.Actions.CompletionType name: CompletionType - name: ) spec.vb: - uid: TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType) name: OnCompleted - name: ( - uid: TinyLife.Actions.CompletionType name: CompletionType - name: ) - uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action) commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action) parent: TinyLife.Actions.Behaviors.ActionBehavior isExternal: true href: https://learn.microsoft.com/dotnet/api/system.type name: CreateDefaultInstance(Type, Action) nameWithType: ActionBehavior.CreateDefaultInstance(Type, Action) fullName: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type, TinyLife.Actions.Action) spec.csharp: - uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action) name: CreateDefaultInstance - name: ( - uid: System.Type name: Type isExternal: true href: https://learn.microsoft.com/dotnet/api/system.type - name: ',' - name: " " - uid: TinyLife.Actions.Action name: Action - name: ) spec.vb: - uid: TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action) name: CreateDefaultInstance - name: ( - uid: System.Type name: Type isExternal: true href: https://learn.microsoft.com/dotnet/api/system.type - name: ',' - name: " " - uid: TinyLife.Actions.Action name: Action - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) nameWithType: object.Equals(object) fullName: object.Equals(object) nameWithType.vb: Object.Equals(Object) fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) name: Equals(object, object) nameWithType: object.Equals(object, object) fullName: object.Equals(object, object) nameWithType.vb: Object.Equals(Object, Object) fullName.vb: Object.Equals(Object, Object) name.vb: Equals(Object, Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode name: GetHashCode() nameWithType: object.GetHashCode() fullName: object.GetHashCode() nameWithType.vb: Object.GetHashCode() fullName.vb: Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype name: GetType() nameWithType: object.GetType() fullName: object.GetType() nameWithType.vb: Object.GetType() fullName.vb: Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) spec.vb: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone name: MemberwiseClone() nameWithType: object.MemberwiseClone() fullName: object.MemberwiseClone() nameWithType.vb: Object.MemberwiseClone() fullName.vb: Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals name: ReferenceEquals(object, object) nameWithType: object.ReferenceEquals(object, object) fullName: object.ReferenceEquals(object, object) nameWithType.vb: Object.ReferenceEquals(Object, Object) fullName.vb: Object.ReferenceEquals(Object, Object) name.vb: ReferenceEquals(Object, Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring name: ToString() nameWithType: object.ToString() fullName: object.ToString() nameWithType.vb: Object.ToString() fullName.vb: Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) spec.vb: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) - uid: TinyLife.Actions.Behaviors.ReadBehavior.TinyLife.Utilities.Extensions.JsonCopy``1 commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0) parent: TinyLife.Utilities.Extensions definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy(ReadBehavior) nameWithType: Extensions.JsonCopy(ReadBehavior) fullName: TinyLife.Utilities.Extensions.JsonCopy(TinyLife.Actions.Behaviors.ReadBehavior) nameWithType.vb: Extensions.JsonCopy(Of ReadBehavior)(ReadBehavior) fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.Behaviors.ReadBehavior)(TinyLife.Actions.Behaviors.ReadBehavior) name.vb: JsonCopy(Of ReadBehavior)(ReadBehavior) spec.csharp: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Behaviors.ReadBehavior) name: JsonCopy - name: < - uid: TinyLife.Actions.Behaviors.ReadBehavior name: ReadBehavior - name: '>' - name: ( - uid: TinyLife.Actions.Behaviors.ReadBehavior name: ReadBehavior - name: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Behaviors.ReadBehavior) name: JsonCopy - name: ( - name: Of - name: " " - uid: TinyLife.Actions.Behaviors.ReadBehavior name: ReadBehavior - name: ) - name: ( - uid: TinyLife.Actions.Behaviors.ReadBehavior name: ReadBehavior - name: ) - uid: TinyLife.Objects commentId: N:TinyLife.Objects name: TinyLife.Objects nameWithType: TinyLife.Objects fullName: TinyLife.Objects spec.csharp: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Objects name: Objects spec.vb: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Objects name: Objects - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy(T) nameWithType: Extensions.JsonCopy(T) fullName: TinyLife.Utilities.Extensions.JsonCopy(T) nameWithType.vb: Extensions.JsonCopy(Of T)(T) fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T) name.vb: JsonCopy(Of T)(T) spec.csharp: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy - name: < - name: T - name: '>' - name: ( - name: T - name: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - name: T - name: ) - uid: TinyLife.Utilities.Extensions commentId: T:TinyLife.Utilities.Extensions parent: TinyLife.Utilities name: Extensions nameWithType: Extensions fullName: TinyLife.Utilities.Extensions - uid: TinyLife.Utilities commentId: N:TinyLife.Utilities name: TinyLife.Utilities nameWithType: TinyLife.Utilities fullName: TinyLife.Utilities spec.csharp: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Utilities name: Utilities spec.vb: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Utilities name: Utilities - uid: TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress commentId: P:TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress parent: TinyLife.Actions.Behaviors.ActionBehavior name: FullyInProgress nameWithType: ActionBehavior.FullyInProgress fullName: TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress - uid: TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress* commentId: Overload:TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress name: FullyInProgress nameWithType: ReadBehavior.FullyInProgress fullName: TinyLife.Actions.Behaviors.ReadBehavior.FullyInProgress - uid: System.Boolean commentId: T:System.Boolean parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean name: bool nameWithType: bool fullName: bool nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean - uid: TinyLife.Actions.Behaviors.ReadBehavior.#ctor* commentId: Overload:TinyLife.Actions.Behaviors.ReadBehavior.#ctor name: ReadBehavior nameWithType: ReadBehavior.ReadBehavior fullName: TinyLife.Actions.Behaviors.ReadBehavior.ReadBehavior nameWithType.vb: ReadBehavior.New fullName.vb: TinyLife.Actions.Behaviors.ReadBehavior.New name.vb: New - uid: System.ArgumentNullException commentId: T:System.ArgumentNullException isExternal: true href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception name: ArgumentNullException nameWithType: ArgumentNullException fullName: System.ArgumentNullException - uid: TinyLife.Actions.Action commentId: T:TinyLife.Actions.Action parent: TinyLife.Actions name: Action nameWithType: Action fullName: TinyLife.Actions.Action - uid: System.Func{TinyLife.Objects.FurnitureType} commentId: T:System.Func{TinyLife.Objects.FurnitureType} parent: System definition: System.Func`1 href: https://learn.microsoft.com/dotnet/api/system.func-1 name: Func nameWithType: Func fullName: System.Func nameWithType.vb: Func(Of FurnitureType) fullName.vb: System.Func(Of TinyLife.Objects.FurnitureType) name.vb: Func(Of FurnitureType) spec.csharp: - uid: System.Func`1 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-1 - name: < - uid: TinyLife.Objects.FurnitureType name: FurnitureType - name: '>' spec.vb: - uid: System.Func`1 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-1 - name: ( - name: Of - name: " " - uid: TinyLife.Objects.FurnitureType name: FurnitureType - name: ) - uid: System.Int32[] isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 name: int[] nameWithType: int[] fullName: int[] nameWithType.vb: Integer() fullName.vb: Integer() name.vb: Integer() spec.csharp: - uid: System.Int32 name: int isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '[' - name: ']' spec.vb: - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ( - name: ) - uid: System.Func{TinyLife.Objects.Furniture,System.Boolean} commentId: T:System.Func{TinyLife.Objects.Furniture,System.Boolean} parent: System definition: System.Func`2 href: https://learn.microsoft.com/dotnet/api/system.func-2 name: Func nameWithType: Func fullName: System.Func nameWithType.vb: Func(Of Furniture, Boolean) fullName.vb: System.Func(Of TinyLife.Objects.Furniture, Boolean) name.vb: Func(Of Furniture, Boolean) spec.csharp: - uid: System.Func`2 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 - name: < - uid: TinyLife.Objects.Furniture name: Furniture - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: '>' spec.vb: - uid: System.Func`2 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 - name: ( - name: Of - name: " " - uid: TinyLife.Objects.Furniture name: Furniture - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) - uid: TinyLife.Actions commentId: N:TinyLife.Actions name: TinyLife.Actions nameWithType: TinyLife.Actions fullName: TinyLife.Actions spec.csharp: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Actions name: Actions spec.vb: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Actions name: Actions - uid: System.Func`1 commentId: T:System.Func`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-1 name: Func nameWithType: Func fullName: System.Func nameWithType.vb: Func(Of TResult) fullName.vb: System.Func(Of TResult) name.vb: Func(Of TResult) spec.csharp: - uid: System.Func`1 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-1 - name: < - name: TResult - name: '>' spec.vb: - uid: System.Func`1 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-1 - name: ( - name: Of - name: " " - name: TResult - name: ) - uid: System.Func`2 commentId: T:System.Func`2 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 name: Func nameWithType: Func fullName: System.Func nameWithType.vb: Func(Of T, TResult) fullName.vb: System.Func(Of T, TResult) name.vb: Func(Of T, TResult) spec.csharp: - uid: System.Func`2 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 - name: < - name: T - name: ',' - name: " " - name: TResult - name: '>' spec.vb: - uid: System.Func`2 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 - name: ( - name: Of - name: " " - name: T - name: ',' - name: " " - name: TResult - name: ) - uid: TinyLife.Actions.Behaviors.ActionBehavior.Initialize commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.Initialize parent: TinyLife.Actions.Behaviors.ActionBehavior name: Initialize() nameWithType: ActionBehavior.Initialize() fullName: TinyLife.Actions.Behaviors.ActionBehavior.Initialize() spec.csharp: - uid: TinyLife.Actions.Behaviors.ActionBehavior.Initialize name: Initialize - name: ( - name: ) spec.vb: - uid: TinyLife.Actions.Behaviors.ActionBehavior.Initialize name: Initialize - name: ( - name: ) - uid: TinyLife.Actions.Behaviors.ReadBehavior.Initialize* commentId: Overload:TinyLife.Actions.Behaviors.ReadBehavior.Initialize name: Initialize nameWithType: ReadBehavior.Initialize fullName: TinyLife.Actions.Behaviors.ReadBehavior.Initialize - uid: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action) commentId: M:TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action) parent: TinyLife.Actions.Behaviors.ActionBehavior name: CanMultitask(Action) nameWithType: ActionBehavior.CanMultitask(Action) fullName: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action) spec.csharp: - uid: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action) name: CanMultitask - name: ( - uid: TinyLife.Actions.Action name: Action - name: ) spec.vb: - uid: TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action) name: CanMultitask - name: ( - uid: TinyLife.Actions.Action name: Action - name: ) - uid: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask* commentId: Overload:TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask name: CanMultitask nameWithType: ReadBehavior.CanMultitask fullName: TinyLife.Actions.Behaviors.ReadBehavior.CanMultitask