### YamlMime:ManagedReference
items:
- uid: TinyLife.World.LockableAnimatedDoor
  commentId: T:TinyLife.World.LockableAnimatedDoor
  id: LockableAnimatedDoor
  parent: TinyLife.World
  children:
  - TinyLife.World.LockableAnimatedDoor.#ctor(TinyLife.World.OpeningType,System.Int32[])
  - TinyLife.World.LockableAnimatedDoor.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.MapObject)
  - TinyLife.World.LockableAnimatedDoor.Construct(TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike)
  - TinyLife.World.LockableAnimatedDoor.Lock
  langs:
  - csharp
  - vb
  name: LockableAnimatedDoor
  nameWithType: LockableAnimatedDoor
  fullName: TinyLife.World.LockableAnimatedDoor
  type: Class
  assemblies:
  - Tiny Life
  namespace: TinyLife.World
  summary: >-
    An opening is some sort of extrusion in a <xref href="TinyLife.Objects.WallLike" data-throw-if-not-resolved="false"></xref>, like a window or a door.

    Openings are created from their underlying <xref href="TinyLife.World.OpeningType" data-throw-if-not-resolved="false"></xref>.
  example: []
  syntax:
    content: 'public class LockableAnimatedDoor : AnimatedDoor'
    content.vb: Public Class LockableAnimatedDoor Inherits AnimatedDoor
  inheritance:
  - System.Object
  - TinyLife.World.Opening
  - TinyLife.World.WalkableOpening
  - TinyLife.World.AnimatedDoor
  inheritedMembers:
  - TinyLife.World.AnimatedDoor.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.Objects.WallLike,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
  - TinyLife.World.AnimatedDoor.IsOpen(TinyLife.World.Map,TinyLife.Objects.WallLike)
  - TinyLife.World.WalkableOpening.CanPlaceOn(TinyLife.Objects.FurnitureType)
  - TinyLife.World.Opening.Migrations
  - TinyLife.World.Opening.Type
  - TinyLife.World.Opening.Colors
  - TinyLife.World.Opening.Validate(TinyLife.Objects.WallLike,TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
  - TinyLife.World.Opening.GetDescription
  - 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.World.LockableAnimatedDoor.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.World.LockableAnimatedDoor.Lock
  commentId: F:TinyLife.World.LockableAnimatedDoor.Lock
  id: Lock
  parent: TinyLife.World.LockableAnimatedDoor
  langs:
  - csharp
  - vb
  name: Lock
  nameWithType: LockableAnimatedDoor.Lock
  fullName: TinyLife.World.LockableAnimatedDoor.Lock
  type: Field
  assemblies:
  - Tiny Life
  namespace: TinyLife.World
  summary: The lock type that this door is locked with, or 0 if the door is not locked
  example: []
  syntax:
    content: >-
      [DataMember]

      public LockType Lock
    return:
      type: TinyLife.World.LockType
    content.vb: >-
      <DataMember>

      Public Lock As LockType
  attributes:
  - type: System.Runtime.Serialization.DataMemberAttribute
    ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
    arguments: []
- uid: TinyLife.World.LockableAnimatedDoor.#ctor(TinyLife.World.OpeningType,System.Int32[])
  commentId: M:TinyLife.World.LockableAnimatedDoor.#ctor(TinyLife.World.OpeningType,System.Int32[])
  id: '#ctor(TinyLife.World.OpeningType,System.Int32[])'
  parent: TinyLife.World.LockableAnimatedDoor
  langs:
  - csharp
  - vb
  name: LockableAnimatedDoor(OpeningType, int[])
  nameWithType: LockableAnimatedDoor.LockableAnimatedDoor(OpeningType, int[])
  fullName: TinyLife.World.LockableAnimatedDoor.LockableAnimatedDoor(TinyLife.World.OpeningType, int[])
  type: Constructor
  assemblies:
  - Tiny Life
  namespace: TinyLife.World
  summary: Creates a new opening from the given opening type and color
  example: []
  syntax:
    content: public LockableAnimatedDoor(OpeningType type, int[] colors)
    parameters:
    - id: type
      type: TinyLife.World.OpeningType
      description: The opening type
    - id: colors
      type: System.Int32[]
      description: The indices of the colors to use
    content.vb: Public Sub New(type As OpeningType, colors As Integer())
  overload: TinyLife.World.LockableAnimatedDoor.#ctor*
  nameWithType.vb: LockableAnimatedDoor.New(OpeningType, Integer())
  fullName.vb: TinyLife.World.LockableAnimatedDoor.New(TinyLife.World.OpeningType, Integer())
  name.vb: New(OpeningType, Integer())
- uid: TinyLife.World.LockableAnimatedDoor.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.MapObject)
  commentId: M:TinyLife.World.LockableAnimatedDoor.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.MapObject)
  id: CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.MapObject)
  parent: TinyLife.World.LockableAnimatedDoor
  langs:
  - csharp
  - vb
  name: CanWalkThrough(Map, WallLike, MapObject)
  nameWithType: LockableAnimatedDoor.CanWalkThrough(Map, WallLike, MapObject)
  fullName: TinyLife.World.LockableAnimatedDoor.CanWalkThrough(TinyLife.World.Map, TinyLife.Objects.WallLike, TinyLife.Objects.MapObject)
  type: Method
  assemblies:
  - Tiny Life
  namespace: TinyLife.World
  summary: >-
    Returns whether a <xref href="TinyLife.Objects.PersonLike" data-throw-if-not-resolved="false"></xref> is able to walk through a <xref href="TinyLife.Objects.WallLike" data-throw-if-not-resolved="false"></xref> that has this opening.

    This returns true for <xref href="TinyLife.World.WalkableOpening" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.World.LockableAnimatedDoor" data-throw-if-not-resolved="false"></xref> and false for <xref href="TinyLife.World.Opening" data-throw-if-not-resolved="false"></xref>.
  example: []
  syntax:
    content: public override bool CanWalkThrough(Map map, WallLike wall, MapObject obj)
    parameters:
    - id: map
      type: TinyLife.World.Map
    - id: wall
      type: TinyLife.Objects.WallLike
    - id: obj
      type: TinyLife.Objects.MapObject
    return:
      type: System.Boolean
      description: ''
    content.vb: Public Overrides Function CanWalkThrough(map As Map, wall As WallLike, obj As MapObject) As Boolean
  overridden: TinyLife.World.AnimatedDoor.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.MapObject)
  overload: TinyLife.World.LockableAnimatedDoor.CanWalkThrough*
- uid: TinyLife.World.LockableAnimatedDoor.Construct(TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike)
  commentId: M:TinyLife.World.LockableAnimatedDoor.Construct(TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike)
  id: Construct(TinyLife.World.OpeningType,System.Int32[],TinyLife.Objects.WallLike)
  parent: TinyLife.World.LockableAnimatedDoor
  langs:
  - csharp
  - vb
  name: Construct(OpeningType, int[], WallLike)
  nameWithType: LockableAnimatedDoor.Construct(OpeningType, int[], WallLike)
  fullName: TinyLife.World.LockableAnimatedDoor.Construct(TinyLife.World.OpeningType, int[], TinyLife.Objects.WallLike)
  type: Method
  assemblies:
  - Tiny Life
  namespace: TinyLife.World
  summary: >-
    Constructs a new door with the given settings.

    This is a helper method that can be used through a method group when constructing a new <xref href="TinyLife.World.OpeningType" data-throw-if-not-resolved="false"></xref>.
  example: []
  syntax:
    content: public static LockableAnimatedDoor Construct(OpeningType type, int[] colors, WallLike wall)
    parameters:
    - id: type
      type: TinyLife.World.OpeningType
      description: The type.
    - id: colors
      type: System.Int32[]
      description: The colors.
    - id: wall
      type: TinyLife.Objects.WallLike
      description: The wall.
    return:
      type: TinyLife.World.LockableAnimatedDoor
      description: The constructed door.
    content.vb: Public Shared Function Construct(type As OpeningType, colors As Integer(), wall As WallLike) As LockableAnimatedDoor
  overload: TinyLife.World.LockableAnimatedDoor.Construct*
  nameWithType.vb: LockableAnimatedDoor.Construct(OpeningType, Integer(), WallLike)
  fullName.vb: TinyLife.World.LockableAnimatedDoor.Construct(TinyLife.World.OpeningType, Integer(), TinyLife.Objects.WallLike)
  name.vb: Construct(OpeningType, Integer(), WallLike)
references:
- uid: TinyLife.Objects.WallLike
  commentId: T:TinyLife.Objects.WallLike
  parent: TinyLife.Objects
  href: TinyLife.Objects.WallLike.html
  name: WallLike
  nameWithType: WallLike
  fullName: TinyLife.Objects.WallLike
- uid: TinyLife.World.OpeningType
  commentId: T:TinyLife.World.OpeningType
  parent: TinyLife.World
  href: TinyLife.World.OpeningType.html
  name: OpeningType
  nameWithType: OpeningType
  fullName: TinyLife.World.OpeningType
- uid: TinyLife.World
  commentId: N:TinyLife.World
  href: TinyLife.html
  name: TinyLife.World
  nameWithType: TinyLife.World
  fullName: TinyLife.World
  spec.csharp:
  - uid: TinyLife
    name: TinyLife
    href: TinyLife.html
  - name: .
  - uid: TinyLife.World
    name: World
    href: TinyLife.World.html
  spec.vb:
  - uid: TinyLife
    name: TinyLife
    href: TinyLife.html
  - name: .
  - uid: TinyLife.World
    name: World
    href: TinyLife.World.html
- 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.World.Opening
  commentId: T:TinyLife.World.Opening
  parent: TinyLife.World
  href: TinyLife.World.Opening.html
  name: Opening
  nameWithType: Opening
  fullName: TinyLife.World.Opening
- uid: TinyLife.World.WalkableOpening
  commentId: T:TinyLife.World.WalkableOpening
  parent: TinyLife.World
  href: TinyLife.World.WalkableOpening.html
  name: WalkableOpening
  nameWithType: WalkableOpening
  fullName: TinyLife.World.WalkableOpening
- uid: TinyLife.World.AnimatedDoor
  commentId: T:TinyLife.World.AnimatedDoor
  parent: TinyLife.World
  href: TinyLife.World.AnimatedDoor.html
  name: AnimatedDoor
  nameWithType: AnimatedDoor
  fullName: TinyLife.World.AnimatedDoor
- uid: TinyLife.World.AnimatedDoor.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.Objects.WallLike,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
  commentId: M:TinyLife.World.AnimatedDoor.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.Objects.WallLike,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
  parent: TinyLife.World.AnimatedDoor
  isExternal: true
  href: TinyLife.World.AnimatedDoor.html#TinyLife_World_AnimatedDoor_Draw_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_TinyLife_World_Map_TinyLife_Objects_WallLike_Microsoft_Xna_Framework_Vector2_System_Boolean_System_Single_System_Nullable_Microsoft_Xna_Framework_Color__
  name: Draw(GameTime, SpriteBatch, Map, WallLike, Vector2, bool, float, Color?)
  nameWithType: AnimatedDoor.Draw(GameTime, SpriteBatch, Map, WallLike, Vector2, bool, float, Color?)
  fullName: TinyLife.World.AnimatedDoor.Draw(Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, TinyLife.World.Map, TinyLife.Objects.WallLike, Microsoft.Xna.Framework.Vector2, bool, float, Microsoft.Xna.Framework.Color?)
  nameWithType.vb: AnimatedDoor.Draw(GameTime, SpriteBatch, Map, WallLike, Vector2, Boolean, Single, Color?)
  fullName.vb: TinyLife.World.AnimatedDoor.Draw(Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, TinyLife.World.Map, TinyLife.Objects.WallLike, Microsoft.Xna.Framework.Vector2, Boolean, Single, Microsoft.Xna.Framework.Color?)
  name.vb: Draw(GameTime, SpriteBatch, Map, WallLike, Vector2, Boolean, Single, Color?)
  spec.csharp:
  - uid: TinyLife.World.AnimatedDoor.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.Objects.WallLike,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
    name: Draw
    href: TinyLife.World.AnimatedDoor.html#TinyLife_World_AnimatedDoor_Draw_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_TinyLife_World_Map_TinyLife_Objects_WallLike_Microsoft_Xna_Framework_Vector2_System_Boolean_System_Single_System_Nullable_Microsoft_Xna_Framework_Color__
  - name: (
  - uid: Microsoft.Xna.Framework.GameTime
    name: GameTime
    isExternal: true
  - name: ','
  - name: " "
  - uid: Microsoft.Xna.Framework.Graphics.SpriteBatch
    name: SpriteBatch
    isExternal: true
  - name: ','
  - name: " "
  - uid: TinyLife.World.Map
    name: Map
    href: TinyLife.World.Map.html
  - name: ','
  - name: " "
  - uid: TinyLife.Objects.WallLike
    name: WallLike
    href: TinyLife.Objects.WallLike.html
  - name: ','
  - name: " "
  - uid: Microsoft.Xna.Framework.Vector2
    name: Vector2
    isExternal: true
  - name: ','
  - name: " "
  - uid: System.Boolean
    name: bool
    isExternal: true
    href: https://learn.microsoft.com/dotnet/api/system.boolean
  - name: ','
  - name: " "
  - uid: System.Single
    name: float
    isExternal: true
    href: https://learn.microsoft.com/dotnet/api/system.single
  - name: ','
  - name: " "
  - uid: Microsoft.Xna.Framework.Color
    name: Color
    isExternal: true
  - name: '?'
  - name: )
  spec.vb:
  - uid: TinyLife.World.AnimatedDoor.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.Objects.WallLike,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Nullable{Microsoft.Xna.Framework.Color})
    name: Draw
    href: TinyLife.World.AnimatedDoor.html#TinyLife_World_AnimatedDoor_Draw_Microsoft_Xna_Framework_GameTime_Microsoft_Xna_Framework_Graphics_SpriteBatch_TinyLife_World_Map_TinyLife_Objects_WallLike_Microsoft_Xna_Framework_Vector2_System_Boolean_System_Single_System_Nullable_Microsoft_Xna_Framework_Color__
  - name: (
  - uid: Microsoft.Xna.Framework.GameTime
    name: GameTime
    isExternal: true
  - name: ','
  - name: " "
  - uid: Microsoft.Xna.Framework.Graphics.SpriteBatch
    name: SpriteBatch
    isExternal: true
  - name: ','
  - name: " "
  - uid: TinyLife.World.Map
    name: Map
    href: TinyLife.World.Map.html
  - name: ','
  - name: " "
  - uid: TinyLife.Objects.WallLike
    name: WallLike
    href: TinyLife.Objects.WallLike.html
  - name: ','
  - name: " "
  - uid: Microsoft.Xna.Framework.Vector2
    name: Vector2
    isExternal: true
  - name: ','
  - name: " "
  - uid: System.Boolean
    name: Boolean
    isExternal: true
    href: https://learn.microsoft.com/dotnet/api/system.boolean
  - name: ','
  - name: " "
  - uid: System.Single
    name: Single
    isExternal: true
    href: https://learn.microsoft.com/dotnet/api/system.single
  - name: ','
  - name: " "
  - uid: Microsoft.Xna.Framework.Color
    name: Color
    isExternal: true
  - name: '?'
  - name: )
- uid: TinyLife.World.AnimatedDoor.IsOpen(TinyLife.World.Map,TinyLife.Objects.WallLike)
  commentId: M:TinyLife.World.AnimatedDoor.IsOpen(TinyLife.World.Map,TinyLife.Objects.WallLike)
  parent: TinyLife.World.AnimatedDoor
  href: TinyLife.World.AnimatedDoor.html#TinyLife_World_AnimatedDoor_IsOpen_TinyLife_World_Map_TinyLife_Objects_WallLike_
  name: IsOpen(Map, WallLike)
  nameWithType: AnimatedDoor.IsOpen(Map, WallLike)
  fullName: TinyLife.World.AnimatedDoor.IsOpen(TinyLife.World.Map, TinyLife.Objects.WallLike)
  spec.csharp:
  - uid: TinyLife.World.AnimatedDoor.IsOpen(TinyLife.World.Map,TinyLife.Objects.WallLike)
    name: IsOpen
    href: TinyLife.World.AnimatedDoor.html#TinyLife_World_AnimatedDoor_IsOpen_TinyLife_World_Map_TinyLife_Objects_WallLike_
  - name: (
  - uid: TinyLife.World.Map
    name: Map
    href: TinyLife.World.Map.html
  - name: ','
  - name: " "
  - uid: TinyLife.Objects.WallLike
    name: WallLike
    href: TinyLife.Objects.WallLike.html
  - name: )
  spec.vb:
  - uid: TinyLife.World.AnimatedDoor.IsOpen(TinyLife.World.Map,TinyLife.Objects.WallLike)
    name: IsOpen
    href: TinyLife.World.AnimatedDoor.html#TinyLife_World_AnimatedDoor_IsOpen_TinyLife_World_Map_TinyLife_Objects_WallLike_
  - name: (
  - uid: TinyLife.World.Map
    name: Map
    href: TinyLife.World.Map.html
  - name: ','
  - name: " "
  - uid: TinyLife.Objects.WallLike
    name: WallLike
    href: TinyLife.Objects.WallLike.html
  - name: )
- uid: TinyLife.World.WalkableOpening.CanPlaceOn(TinyLife.Objects.FurnitureType)
  commentId: M:TinyLife.World.WalkableOpening.CanPlaceOn(TinyLife.Objects.FurnitureType)
  parent: TinyLife.World.WalkableOpening
  href: TinyLife.World.WalkableOpening.html#TinyLife_World_WalkableOpening_CanPlaceOn_TinyLife_Objects_FurnitureType_
  name: CanPlaceOn(FurnitureType)
  nameWithType: WalkableOpening.CanPlaceOn(FurnitureType)
  fullName: TinyLife.World.WalkableOpening.CanPlaceOn(TinyLife.Objects.FurnitureType)
  spec.csharp:
  - uid: TinyLife.World.WalkableOpening.CanPlaceOn(TinyLife.Objects.FurnitureType)
    name: CanPlaceOn
    href: TinyLife.World.WalkableOpening.html#TinyLife_World_WalkableOpening_CanPlaceOn_TinyLife_Objects_FurnitureType_
  - name: (
  - uid: TinyLife.Objects.FurnitureType
    name: FurnitureType
    href: TinyLife.Objects.FurnitureType.html
  - name: )
  spec.vb:
  - uid: TinyLife.World.WalkableOpening.CanPlaceOn(TinyLife.Objects.FurnitureType)
    name: CanPlaceOn
    href: TinyLife.World.WalkableOpening.html#TinyLife_World_WalkableOpening_CanPlaceOn_TinyLife_Objects_FurnitureType_
  - name: (
  - uid: TinyLife.Objects.FurnitureType
    name: FurnitureType
    href: TinyLife.Objects.FurnitureType.html
  - name: )
- uid: TinyLife.World.Opening.Migrations
  commentId: F:TinyLife.World.Opening.Migrations
  parent: TinyLife.World.Opening
  href: TinyLife.World.Opening.html#TinyLife_World_Opening_Migrations
  name: Migrations
  nameWithType: Opening.Migrations
  fullName: TinyLife.World.Opening.Migrations
- uid: TinyLife.World.Opening.Type
  commentId: F:TinyLife.World.Opening.Type
  parent: TinyLife.World.Opening
  href: TinyLife.World.Opening.html#TinyLife_World_Opening_Type
  name: Type
  nameWithType: Opening.Type
  fullName: TinyLife.World.Opening.Type
- uid: TinyLife.World.Opening.Colors
  commentId: F:TinyLife.World.Opening.Colors
  parent: TinyLife.World.Opening
  href: TinyLife.World.Opening.html#TinyLife_World_Opening_Colors
  name: Colors
  nameWithType: Opening.Colors
  fullName: TinyLife.World.Opening.Colors
- uid: TinyLife.World.Opening.Validate(TinyLife.Objects.WallLike,TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
  commentId: M:TinyLife.World.Opening.Validate(TinyLife.Objects.WallLike,TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
  parent: TinyLife.World.Opening
  href: TinyLife.World.Opening.html#TinyLife_World_Opening_Validate_TinyLife_Objects_WallLike_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
  name: Validate(WallLike, Map, AppliedMigrations)
  nameWithType: Opening.Validate(WallLike, Map, AppliedMigrations)
  fullName: TinyLife.World.Opening.Validate(TinyLife.Objects.WallLike, TinyLife.World.Map, TinyLife.Utilities.AppliedMigrations)
  spec.csharp:
  - uid: TinyLife.World.Opening.Validate(TinyLife.Objects.WallLike,TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
    name: Validate
    href: TinyLife.World.Opening.html#TinyLife_World_Opening_Validate_TinyLife_Objects_WallLike_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
  - name: (
  - uid: TinyLife.Objects.WallLike
    name: WallLike
    href: TinyLife.Objects.WallLike.html
  - name: ','
  - name: " "
  - uid: TinyLife.World.Map
    name: Map
    href: TinyLife.World.Map.html
  - name: ','
  - name: " "
  - uid: TinyLife.Utilities.AppliedMigrations
    name: AppliedMigrations
    href: TinyLife.Utilities.AppliedMigrations.html
  - name: )
  spec.vb:
  - uid: TinyLife.World.Opening.Validate(TinyLife.Objects.WallLike,TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
    name: Validate
    href: TinyLife.World.Opening.html#TinyLife_World_Opening_Validate_TinyLife_Objects_WallLike_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
  - name: (
  - uid: TinyLife.Objects.WallLike
    name: WallLike
    href: TinyLife.Objects.WallLike.html
  - name: ','
  - name: " "
  - uid: TinyLife.World.Map
    name: Map
    href: TinyLife.World.Map.html
  - name: ','
  - name: " "
  - uid: TinyLife.Utilities.AppliedMigrations
    name: AppliedMigrations
    href: TinyLife.Utilities.AppliedMigrations.html
  - name: )
- uid: TinyLife.World.Opening.GetDescription
  commentId: M:TinyLife.World.Opening.GetDescription
  parent: TinyLife.World.Opening
  href: TinyLife.World.Opening.html#TinyLife_World_Opening_GetDescription
  name: GetDescription()
  nameWithType: Opening.GetDescription()
  fullName: TinyLife.World.Opening.GetDescription()
  spec.csharp:
  - uid: TinyLife.World.Opening.GetDescription
    name: GetDescription
    href: TinyLife.World.Opening.html#TinyLife_World_Opening_GetDescription
  - name: (
  - name: )
  spec.vb:
  - uid: TinyLife.World.Opening.GetDescription
    name: GetDescription
    href: TinyLife.World.Opening.html#TinyLife_World_Opening_GetDescription
  - name: (
  - 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.World.LockableAnimatedDoor.TinyLife.Utilities.Extensions.JsonCopy``1
  commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
  parent: TinyLife.Utilities.Extensions
  definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
  href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
  name: JsonCopy<LockableAnimatedDoor>(LockableAnimatedDoor)
  nameWithType: Extensions.JsonCopy<LockableAnimatedDoor>(LockableAnimatedDoor)
  fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.World.LockableAnimatedDoor>(TinyLife.World.LockableAnimatedDoor)
  nameWithType.vb: Extensions.JsonCopy(Of LockableAnimatedDoor)(LockableAnimatedDoor)
  fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.World.LockableAnimatedDoor)(TinyLife.World.LockableAnimatedDoor)
  name.vb: JsonCopy(Of LockableAnimatedDoor)(LockableAnimatedDoor)
  spec.csharp:
  - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.LockableAnimatedDoor)
    name: JsonCopy
    href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
  - name: <
  - uid: TinyLife.World.LockableAnimatedDoor
    name: LockableAnimatedDoor
    href: TinyLife.World.LockableAnimatedDoor.html
  - name: '>'
  - name: (
  - uid: TinyLife.World.LockableAnimatedDoor
    name: LockableAnimatedDoor
    href: TinyLife.World.LockableAnimatedDoor.html
  - name: )
  spec.vb:
  - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.LockableAnimatedDoor)
    name: JsonCopy
    href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
  - name: (
  - name: Of
  - name: " "
  - uid: TinyLife.World.LockableAnimatedDoor
    name: LockableAnimatedDoor
    href: TinyLife.World.LockableAnimatedDoor.html
  - name: )
  - name: (
  - uid: TinyLife.World.LockableAnimatedDoor
    name: LockableAnimatedDoor
    href: TinyLife.World.LockableAnimatedDoor.html
  - name: )
- 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
- 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)
  href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
  name: JsonCopy<T>(T)
  nameWithType: Extensions.JsonCopy<T>(T)
  fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
  nameWithType.vb: Extensions.JsonCopy(Of T)(T)
  fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
  name.vb: JsonCopy(Of T)(T)
  spec.csharp:
  - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
    name: JsonCopy
    href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
  - name: <
  - name: T
  - name: '>'
  - name: (
  - name: T
  - name: )
  spec.vb:
  - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
    name: JsonCopy
    href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
  - name: (
  - name: Of
  - name: " "
  - name: T
  - name: )
  - name: (
  - name: T
  - name: )
- uid: TinyLife.Utilities.Extensions
  commentId: T:TinyLife.Utilities.Extensions
  parent: TinyLife.Utilities
  href: TinyLife.Utilities.Extensions.html
  name: Extensions
  nameWithType: Extensions
  fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
  commentId: N:TinyLife.Utilities
  href: TinyLife.html
  name: TinyLife.Utilities
  nameWithType: TinyLife.Utilities
  fullName: TinyLife.Utilities
  spec.csharp:
  - uid: TinyLife
    name: TinyLife
    href: TinyLife.html
  - name: .
  - uid: TinyLife.Utilities
    name: Utilities
    href: TinyLife.Utilities.html
  spec.vb:
  - uid: TinyLife
    name: TinyLife
    href: TinyLife.html
  - name: .
  - uid: TinyLife.Utilities
    name: Utilities
    href: TinyLife.Utilities.html
- uid: TinyLife.World.LockType
  commentId: T:TinyLife.World.LockType
  parent: TinyLife.World
  href: TinyLife.World.LockType.html
  name: LockType
  nameWithType: LockType
  fullName: TinyLife.World.LockType
- uid: TinyLife.World.LockableAnimatedDoor.#ctor*
  commentId: Overload:TinyLife.World.LockableAnimatedDoor.#ctor
  href: TinyLife.World.LockableAnimatedDoor.html#TinyLife_World_LockableAnimatedDoor__ctor_TinyLife_World_OpeningType_System_Int32___
  name: LockableAnimatedDoor
  nameWithType: LockableAnimatedDoor.LockableAnimatedDoor
  fullName: TinyLife.World.LockableAnimatedDoor.LockableAnimatedDoor
  nameWithType.vb: LockableAnimatedDoor.New
  fullName.vb: TinyLife.World.LockableAnimatedDoor.New
  name.vb: New
- 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: TinyLife.Objects.PersonLike
  commentId: T:TinyLife.Objects.PersonLike
  parent: TinyLife.Objects
  href: TinyLife.Objects.PersonLike.html
  name: PersonLike
  nameWithType: PersonLike
  fullName: TinyLife.Objects.PersonLike
- uid: TinyLife.World.LockableAnimatedDoor
  commentId: T:TinyLife.World.LockableAnimatedDoor
  parent: TinyLife.World
  href: TinyLife.World.LockableAnimatedDoor.html
  name: LockableAnimatedDoor
  nameWithType: LockableAnimatedDoor
  fullName: TinyLife.World.LockableAnimatedDoor
- uid: TinyLife.World.AnimatedDoor.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.MapObject)
  commentId: M:TinyLife.World.AnimatedDoor.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.MapObject)
  parent: TinyLife.World.AnimatedDoor
  href: TinyLife.World.AnimatedDoor.html#TinyLife_World_AnimatedDoor_CanWalkThrough_TinyLife_World_Map_TinyLife_Objects_WallLike_TinyLife_Objects_MapObject_
  name: CanWalkThrough(Map, WallLike, MapObject)
  nameWithType: AnimatedDoor.CanWalkThrough(Map, WallLike, MapObject)
  fullName: TinyLife.World.AnimatedDoor.CanWalkThrough(TinyLife.World.Map, TinyLife.Objects.WallLike, TinyLife.Objects.MapObject)
  spec.csharp:
  - uid: TinyLife.World.AnimatedDoor.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.MapObject)
    name: CanWalkThrough
    href: TinyLife.World.AnimatedDoor.html#TinyLife_World_AnimatedDoor_CanWalkThrough_TinyLife_World_Map_TinyLife_Objects_WallLike_TinyLife_Objects_MapObject_
  - name: (
  - uid: TinyLife.World.Map
    name: Map
    href: TinyLife.World.Map.html
  - name: ','
  - name: " "
  - uid: TinyLife.Objects.WallLike
    name: WallLike
    href: TinyLife.Objects.WallLike.html
  - name: ','
  - name: " "
  - uid: TinyLife.Objects.MapObject
    name: MapObject
    href: TinyLife.Objects.MapObject.html
  - name: )
  spec.vb:
  - uid: TinyLife.World.AnimatedDoor.CanWalkThrough(TinyLife.World.Map,TinyLife.Objects.WallLike,TinyLife.Objects.MapObject)
    name: CanWalkThrough
    href: TinyLife.World.AnimatedDoor.html#TinyLife_World_AnimatedDoor_CanWalkThrough_TinyLife_World_Map_TinyLife_Objects_WallLike_TinyLife_Objects_MapObject_
  - name: (
  - uid: TinyLife.World.Map
    name: Map
    href: TinyLife.World.Map.html
  - name: ','
  - name: " "
  - uid: TinyLife.Objects.WallLike
    name: WallLike
    href: TinyLife.Objects.WallLike.html
  - name: ','
  - name: " "
  - uid: TinyLife.Objects.MapObject
    name: MapObject
    href: TinyLife.Objects.MapObject.html
  - name: )
- uid: TinyLife.World.LockableAnimatedDoor.CanWalkThrough*
  commentId: Overload:TinyLife.World.LockableAnimatedDoor.CanWalkThrough
  href: TinyLife.World.LockableAnimatedDoor.html#TinyLife_World_LockableAnimatedDoor_CanWalkThrough_TinyLife_World_Map_TinyLife_Objects_WallLike_TinyLife_Objects_MapObject_
  name: CanWalkThrough
  nameWithType: LockableAnimatedDoor.CanWalkThrough
  fullName: TinyLife.World.LockableAnimatedDoor.CanWalkThrough
- uid: TinyLife.World.Map
  commentId: T:TinyLife.World.Map
  parent: TinyLife.World
  href: TinyLife.World.Map.html
  name: Map
  nameWithType: Map
  fullName: TinyLife.World.Map
- uid: TinyLife.Objects.MapObject
  commentId: T:TinyLife.Objects.MapObject
  parent: TinyLife.Objects
  href: TinyLife.Objects.MapObject.html
  name: MapObject
  nameWithType: MapObject
  fullName: TinyLife.Objects.MapObject
- 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.World.LockableAnimatedDoor.Construct*
  commentId: Overload:TinyLife.World.LockableAnimatedDoor.Construct
  href: TinyLife.World.LockableAnimatedDoor.html#TinyLife_World_LockableAnimatedDoor_Construct_TinyLife_World_OpeningType_System_Int32___TinyLife_Objects_WallLike_
  name: Construct
  nameWithType: LockableAnimatedDoor.Construct
  fullName: TinyLife.World.LockableAnimatedDoor.Construct