### YamlMime:ManagedReference items: - uid: TinyLife.World.SwingingDoor commentId: T:TinyLife.World.SwingingDoor id: SwingingDoor parent: TinyLife.World children: - TinyLife.World.SwingingDoor.#ctor(TinyLife.World.OpeningType,System.Int32[]) - TinyLife.World.SwingingDoor.CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) - TinyLife.World.SwingingDoor.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.World.Wall,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color}) - TinyLife.World.SwingingDoor.IsOpen(TinyLife.World.Map,TinyLife.World.Wall) - TinyLife.World.SwingingDoor.Lock langs: - csharp - vb name: SwingingDoor nameWithType: SwingingDoor fullName: TinyLife.World.SwingingDoor type: Class source: remote: path: TinyLife/World/Opening.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SwingingDoor path: ../TinyLife/World/Opening.cs startLine: 127 assemblies: - Tiny Life namespace: TinyLife.World summary: "\nAn opening is some sort of extrusion in a , like a window or a door.\nOpenings are created from their underlying .\n" example: [] syntax: content: 'public class SwingingDoor : Door, IPricedObject' content.vb: Public Class SwingingDoor Inherits Door Implements IPricedObject inheritance: - System.Object - TinyLife.World.Opening - TinyLife.World.Door implements: - TinyLife.World.IPricedObject inheritedMembers: - TinyLife.World.Door.CanPlaceOn(TinyLife.Objects.FurnitureType) - TinyLife.World.Opening.Type - TinyLife.World.Opening.Color - TinyLife.World.Opening.Colors - TinyLife.World.Opening.Validate(TinyLife.World.Wall,TinyLife.World.Map) - TinyLife.World.Opening.GetDescription - TinyLife.World.Opening.GetPrice - 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.SwingingDoor.TinyLife.Utilities.Extensions.JsonCopy``1 - uid: TinyLife.World.SwingingDoor.Lock commentId: F:TinyLife.World.SwingingDoor.Lock id: Lock parent: TinyLife.World.SwingingDoor langs: - csharp - vb name: Lock nameWithType: SwingingDoor.Lock fullName: TinyLife.World.SwingingDoor.Lock type: Field source: remote: path: TinyLife/World/Opening.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Lock path: ../TinyLife/World/Opening.cs startLine: 133 assemblies: - Tiny Life namespace: TinyLife.World summary: "\nThe lock type that this door is locked with, or 0 if the door is not locked\n" example: [] syntax: content: >- [DataMember] public LockType Lock return: type: TinyLife.World.LockType content.vb: >- Public Lock As LockType attributes: - type: System.Runtime.Serialization.DataMemberAttribute ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor arguments: [] - uid: TinyLife.World.SwingingDoor.#ctor(TinyLife.World.OpeningType,System.Int32[]) commentId: M:TinyLife.World.SwingingDoor.#ctor(TinyLife.World.OpeningType,System.Int32[]) id: '#ctor(TinyLife.World.OpeningType,System.Int32[])' parent: TinyLife.World.SwingingDoor langs: - csharp - vb name: SwingingDoor(OpeningType, int[]) nameWithType: SwingingDoor.SwingingDoor(OpeningType, int[]) fullName: TinyLife.World.SwingingDoor.SwingingDoor(TinyLife.World.OpeningType, int[]) type: Constructor source: remote: path: TinyLife/World/Opening.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/World/Opening.cs startLine: 136 assemblies: - Tiny Life namespace: TinyLife.World summary: "\nCreates a new opening from the given opening type and color\n" example: [] syntax: content: public SwingingDoor(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.SwingingDoor.#ctor* nameWithType.vb: SwingingDoor.New(OpeningType, Integer()) fullName.vb: TinyLife.World.SwingingDoor.New(TinyLife.World.OpeningType, Integer()) name.vb: New(OpeningType, Integer()) - uid: TinyLife.World.SwingingDoor.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.World.Wall,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color}) commentId: M:TinyLife.World.SwingingDoor.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.World.Wall,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color}) id: Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.World.Wall,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color}) parent: TinyLife.World.SwingingDoor langs: - csharp - vb name: Draw(GameTime, SpriteBatch, Map, Wall, Vector2, bool, float, float, Color?) nameWithType: SwingingDoor.Draw(GameTime, SpriteBatch, Map, Wall, Vector2, bool, float, float, Color?) fullName: TinyLife.World.SwingingDoor.Draw(Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, TinyLife.World.Map, TinyLife.World.Wall, Microsoft.Xna.Framework.Vector2, bool, float, float, Microsoft.Xna.Framework.Color?) type: Method source: remote: path: TinyLife/World/Opening.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Draw path: ../TinyLife/World/Opening.cs startLine: 139 assemblies: - Tiny Life namespace: TinyLife.World summary: "\nDraws this opening in the world with the given settings\n" example: [] syntax: content: public override void Draw(GameTime time, SpriteBatch batch, Map map, Wall wall, Vector2 drawPos, bool vertical, float scale, float depth, Color? overrideColor) parameters: - id: time type: Microsoft.Xna.Framework.GameTime description: The game's time - id: batch type: Microsoft.Xna.Framework.Graphics.SpriteBatch description: The sprite batch to use for drawing - id: map type: TinyLife.World.Map description: The map that the opening is on - id: wall type: TinyLife.World.Wall description: The wall that the opening is in - id: drawPos type: Microsoft.Xna.Framework.Vector2 description: The position, in screen space, to draw the opening on - id: vertical type: System.Boolean description: Whether the wall that the opening is on is vertical - id: scale type: System.Single description: The scale to draw the opening with - id: depth type: System.Single description: The depth to use for drawing the opening - id: overrideColor type: System.Nullable{Microsoft.Xna.Framework.Color} description: A color that should be used instead of this opening's default color, or null to use the opening's default color content.vb: Public Overrides Sub Draw(time As GameTime, batch As SpriteBatch, map As Map, wall As Wall, drawPos As Vector2, vertical As Boolean, scale As Single, depth As Single, overrideColor As Color?) overridden: TinyLife.World.Opening.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.World.Wall,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color}) overload: TinyLife.World.SwingingDoor.Draw* nameWithType.vb: SwingingDoor.Draw(GameTime, SpriteBatch, Map, Wall, Vector2, Boolean, Single, Single, Color?) fullName.vb: TinyLife.World.SwingingDoor.Draw(Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, TinyLife.World.Map, TinyLife.World.Wall, Microsoft.Xna.Framework.Vector2, Boolean, Single, Single, Microsoft.Xna.Framework.Color?) name.vb: Draw(GameTime, SpriteBatch, Map, Wall, Vector2, Boolean, Single, Single, Color?) - uid: TinyLife.World.SwingingDoor.CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) commentId: M:TinyLife.World.SwingingDoor.CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) id: CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) parent: TinyLife.World.SwingingDoor langs: - csharp - vb name: CanWalkThrough(Wall, Person) nameWithType: SwingingDoor.CanWalkThrough(Wall, Person) fullName: TinyLife.World.SwingingDoor.CanWalkThrough(TinyLife.World.Wall, TinyLife.Objects.Person) type: Method source: remote: path: TinyLife/World/Opening.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: CanWalkThrough path: ../TinyLife/World/Opening.cs startLine: 150 assemblies: - Tiny Life namespace: TinyLife.World summary: "\nReturns whether a is able to walk through a that has this opening.\nThis returns true for and and false for .\n" example: [] syntax: content: public override bool CanWalkThrough(Wall wall, Person person) parameters: - id: wall type: TinyLife.World.Wall - id: person type: TinyLife.Objects.Person return: type: System.Boolean description: '' content.vb: Public Overrides Function CanWalkThrough(wall As Wall, person As Person) As Boolean overridden: TinyLife.World.Door.CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) overload: TinyLife.World.SwingingDoor.CanWalkThrough* - uid: TinyLife.World.SwingingDoor.IsOpen(TinyLife.World.Map,TinyLife.World.Wall) commentId: M:TinyLife.World.SwingingDoor.IsOpen(TinyLife.World.Map,TinyLife.World.Wall) id: IsOpen(TinyLife.World.Map,TinyLife.World.Wall) parent: TinyLife.World.SwingingDoor langs: - csharp - vb name: IsOpen(Map, Wall) nameWithType: SwingingDoor.IsOpen(Map, Wall) fullName: TinyLife.World.SwingingDoor.IsOpen(TinyLife.World.Map, TinyLife.World.Wall) type: Method source: remote: path: TinyLife/World/Opening.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: IsOpen path: ../TinyLife/World/Opening.cs startLine: 161 assemblies: - Tiny Life namespace: TinyLife.World summary: "\nCalculates and returns whether this opening is currently open.\nThis method returns true if any people that this door are close enough for it to display as opened.\n" example: [] syntax: content: public virtual bool IsOpen(Map map, Wall wall) parameters: - id: map type: TinyLife.World.Map description: The map that the opening is on - id: wall type: TinyLife.World.Wall description: The wall that the opening is in return: type: System.Boolean description: Whether this opening is currently open content.vb: Public Overridable Function IsOpen(map As Map, wall As Wall) As Boolean overload: TinyLife.World.SwingingDoor.IsOpen* references: - uid: TinyLife.World commentId: N:TinyLife.World name: TinyLife.World nameWithType: TinyLife.World fullName: TinyLife.World spec.csharp: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.World name: World spec.vb: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.World name: World - 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 name: Opening nameWithType: Opening fullName: TinyLife.World.Opening - uid: TinyLife.World.Door commentId: T:TinyLife.World.Door parent: TinyLife.World name: Door nameWithType: Door fullName: TinyLife.World.Door - uid: TinyLife.World.IPricedObject commentId: T:TinyLife.World.IPricedObject parent: TinyLife.World name: IPricedObject nameWithType: IPricedObject fullName: TinyLife.World.IPricedObject - uid: TinyLife.World.Door.CanPlaceOn(TinyLife.Objects.FurnitureType) commentId: M:TinyLife.World.Door.CanPlaceOn(TinyLife.Objects.FurnitureType) parent: TinyLife.World.Door name: CanPlaceOn(FurnitureType) nameWithType: Door.CanPlaceOn(FurnitureType) fullName: TinyLife.World.Door.CanPlaceOn(TinyLife.Objects.FurnitureType) spec.csharp: - uid: TinyLife.World.Door.CanPlaceOn(TinyLife.Objects.FurnitureType) name: CanPlaceOn - name: ( - uid: TinyLife.Objects.FurnitureType name: FurnitureType - name: ) spec.vb: - uid: TinyLife.World.Door.CanPlaceOn(TinyLife.Objects.FurnitureType) name: CanPlaceOn - name: ( - uid: TinyLife.Objects.FurnitureType name: FurnitureType - name: ) - uid: TinyLife.World.Opening.Type commentId: F:TinyLife.World.Opening.Type parent: TinyLife.World.Opening name: Type nameWithType: Opening.Type fullName: TinyLife.World.Opening.Type - uid: TinyLife.World.Opening.Color commentId: F:TinyLife.World.Opening.Color parent: TinyLife.World.Opening name: Color nameWithType: Opening.Color fullName: TinyLife.World.Opening.Color - uid: TinyLife.World.Opening.Colors commentId: F:TinyLife.World.Opening.Colors parent: TinyLife.World.Opening name: Colors nameWithType: Opening.Colors fullName: TinyLife.World.Opening.Colors - uid: TinyLife.World.Opening.Validate(TinyLife.World.Wall,TinyLife.World.Map) commentId: M:TinyLife.World.Opening.Validate(TinyLife.World.Wall,TinyLife.World.Map) parent: TinyLife.World.Opening name: Validate(Wall, Map) nameWithType: Opening.Validate(Wall, Map) fullName: TinyLife.World.Opening.Validate(TinyLife.World.Wall, TinyLife.World.Map) spec.csharp: - uid: TinyLife.World.Opening.Validate(TinyLife.World.Wall,TinyLife.World.Map) name: Validate - name: ( - uid: TinyLife.World.Wall name: Wall - name: ',' - name: " " - uid: TinyLife.World.Map name: Map - name: ) spec.vb: - uid: TinyLife.World.Opening.Validate(TinyLife.World.Wall,TinyLife.World.Map) name: Validate - name: ( - uid: TinyLife.World.Wall name: Wall - name: ',' - name: " " - uid: TinyLife.World.Map name: Map - name: ) - uid: TinyLife.World.Opening.GetDescription commentId: M:TinyLife.World.Opening.GetDescription parent: TinyLife.World.Opening name: GetDescription() nameWithType: Opening.GetDescription() fullName: TinyLife.World.Opening.GetDescription() spec.csharp: - uid: TinyLife.World.Opening.GetDescription name: GetDescription - name: ( - name: ) spec.vb: - uid: TinyLife.World.Opening.GetDescription name: GetDescription - name: ( - name: ) - uid: TinyLife.World.Opening.GetPrice commentId: M:TinyLife.World.Opening.GetPrice parent: TinyLife.World.Opening name: GetPrice() nameWithType: Opening.GetPrice() fullName: TinyLife.World.Opening.GetPrice() spec.csharp: - uid: TinyLife.World.Opening.GetPrice name: GetPrice - name: ( - name: ) spec.vb: - uid: TinyLife.World.Opening.GetPrice name: GetPrice - 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.SwingingDoor.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(SwingingDoor) nameWithType: Extensions.JsonCopy(SwingingDoor) fullName: TinyLife.Utilities.Extensions.JsonCopy(TinyLife.World.SwingingDoor) nameWithType.vb: Extensions.JsonCopy(Of SwingingDoor)(SwingingDoor) fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.World.SwingingDoor)(TinyLife.World.SwingingDoor) name.vb: JsonCopy(Of SwingingDoor)(SwingingDoor) spec.csharp: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.SwingingDoor) name: JsonCopy - name: < - uid: TinyLife.World.SwingingDoor name: SwingingDoor - name: '>' - name: ( - uid: TinyLife.World.SwingingDoor name: SwingingDoor - name: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.SwingingDoor) name: JsonCopy - name: ( - name: Of - name: " " - uid: TinyLife.World.SwingingDoor name: SwingingDoor - name: ) - name: ( - uid: TinyLife.World.SwingingDoor name: SwingingDoor - name: ) - 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.World.LockType commentId: T:TinyLife.World.LockType parent: TinyLife.World name: LockType nameWithType: LockType fullName: TinyLife.World.LockType - uid: TinyLife.World.SwingingDoor.#ctor* commentId: Overload:TinyLife.World.SwingingDoor.#ctor name: SwingingDoor nameWithType: SwingingDoor.SwingingDoor fullName: TinyLife.World.SwingingDoor.SwingingDoor nameWithType.vb: SwingingDoor.New fullName.vb: TinyLife.World.SwingingDoor.New name.vb: New - uid: TinyLife.World.OpeningType commentId: T:TinyLife.World.OpeningType parent: TinyLife.World name: OpeningType nameWithType: OpeningType fullName: TinyLife.World.OpeningType - 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.World.Opening.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.World.Wall,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color}) commentId: M:TinyLife.World.Opening.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.World.Wall,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color}) parent: TinyLife.World.Opening isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean name: Draw(GameTime, SpriteBatch, Map, Wall, Vector2, bool, float, float, Color?) nameWithType: Opening.Draw(GameTime, SpriteBatch, Map, Wall, Vector2, bool, float, float, Color?) fullName: TinyLife.World.Opening.Draw(Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, TinyLife.World.Map, TinyLife.World.Wall, Microsoft.Xna.Framework.Vector2, bool, float, float, Microsoft.Xna.Framework.Color?) nameWithType.vb: Opening.Draw(GameTime, SpriteBatch, Map, Wall, Vector2, Boolean, Single, Single, Color?) fullName.vb: TinyLife.World.Opening.Draw(Microsoft.Xna.Framework.GameTime, Microsoft.Xna.Framework.Graphics.SpriteBatch, TinyLife.World.Map, TinyLife.World.Wall, Microsoft.Xna.Framework.Vector2, Boolean, Single, Single, Microsoft.Xna.Framework.Color?) name.vb: Draw(GameTime, SpriteBatch, Map, Wall, Vector2, Boolean, Single, Single, Color?) spec.csharp: - uid: TinyLife.World.Opening.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.World.Wall,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color}) name: Draw - 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 - name: ',' - name: " " - uid: TinyLife.World.Wall name: Wall - 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: 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.Opening.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch,TinyLife.World.Map,TinyLife.World.Wall,Microsoft.Xna.Framework.Vector2,System.Boolean,System.Single,System.Single,System.Nullable{Microsoft.Xna.Framework.Color}) name: Draw - 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 - name: ',' - name: " " - uid: TinyLife.World.Wall name: Wall - 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: 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.SwingingDoor.Draw* commentId: Overload:TinyLife.World.SwingingDoor.Draw name: Draw nameWithType: SwingingDoor.Draw fullName: TinyLife.World.SwingingDoor.Draw - uid: Microsoft.Xna.Framework.GameTime commentId: T:Microsoft.Xna.Framework.GameTime parent: Microsoft.Xna.Framework isExternal: true name: GameTime nameWithType: GameTime fullName: Microsoft.Xna.Framework.GameTime - uid: Microsoft.Xna.Framework.Graphics.SpriteBatch commentId: T:Microsoft.Xna.Framework.Graphics.SpriteBatch parent: Microsoft.Xna.Framework.Graphics isExternal: true name: SpriteBatch nameWithType: SpriteBatch fullName: Microsoft.Xna.Framework.Graphics.SpriteBatch - uid: TinyLife.World.Map commentId: T:TinyLife.World.Map parent: TinyLife.World name: Map nameWithType: Map fullName: TinyLife.World.Map - uid: TinyLife.World.Wall commentId: T:TinyLife.World.Wall parent: TinyLife.World name: Wall nameWithType: Wall fullName: TinyLife.World.Wall - uid: Microsoft.Xna.Framework.Vector2 commentId: T:Microsoft.Xna.Framework.Vector2 parent: Microsoft.Xna.Framework isExternal: true name: Vector2 nameWithType: Vector2 fullName: Microsoft.Xna.Framework.Vector2 - 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: System.Single commentId: T:System.Single parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single name: float nameWithType: float fullName: float nameWithType.vb: Single fullName.vb: Single name.vb: Single - uid: System.Nullable{Microsoft.Xna.Framework.Color} commentId: T:System.Nullable{Microsoft.Xna.Framework.Color} parent: System definition: System.Nullable`1 name: Color? nameWithType: Color? fullName: Microsoft.Xna.Framework.Color? spec.csharp: - uid: Microsoft.Xna.Framework.Color name: Color isExternal: true - name: '?' spec.vb: - uid: Microsoft.Xna.Framework.Color name: Color isExternal: true - name: '?' - uid: Microsoft.Xna.Framework commentId: N:Microsoft.Xna.Framework isExternal: true name: Microsoft.Xna.Framework nameWithType: Microsoft.Xna.Framework fullName: Microsoft.Xna.Framework 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 - uid: Microsoft.Xna.Framework.Graphics commentId: N:Microsoft.Xna.Framework.Graphics isExternal: true name: Microsoft.Xna.Framework.Graphics nameWithType: Microsoft.Xna.Framework.Graphics fullName: Microsoft.Xna.Framework.Graphics 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 - name: . - uid: Microsoft.Xna.Framework.Graphics name: Graphics 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 - name: . - uid: Microsoft.Xna.Framework.Graphics name: Graphics isExternal: true - uid: System.Nullable`1 commentId: T:System.Nullable`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.nullable-1 name: Nullable nameWithType: Nullable fullName: System.Nullable nameWithType.vb: Nullable(Of T) fullName.vb: System.Nullable(Of T) name.vb: Nullable(Of T) spec.csharp: - uid: System.Nullable`1 name: Nullable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Nullable`1 name: Nullable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: TinyLife.World.Door.CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) commentId: M:TinyLife.World.Door.CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) parent: TinyLife.World.Door name: CanWalkThrough(Wall, Person) nameWithType: Door.CanWalkThrough(Wall, Person) fullName: TinyLife.World.Door.CanWalkThrough(TinyLife.World.Wall, TinyLife.Objects.Person) spec.csharp: - uid: TinyLife.World.Door.CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) name: CanWalkThrough - name: ( - uid: TinyLife.World.Wall name: Wall - name: ',' - name: " " - uid: TinyLife.Objects.Person name: Person - name: ) spec.vb: - uid: TinyLife.World.Door.CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) name: CanWalkThrough - name: ( - uid: TinyLife.World.Wall name: Wall - name: ',' - name: " " - uid: TinyLife.Objects.Person name: Person - name: ) - uid: TinyLife.World.SwingingDoor.CanWalkThrough* commentId: Overload:TinyLife.World.SwingingDoor.CanWalkThrough name: CanWalkThrough nameWithType: SwingingDoor.CanWalkThrough fullName: TinyLife.World.SwingingDoor.CanWalkThrough - uid: TinyLife.Objects.Person commentId: T:TinyLife.Objects.Person parent: TinyLife.Objects name: Person nameWithType: Person fullName: TinyLife.Objects.Person - 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: TinyLife.World.SwingingDoor.CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) commentId: M:TinyLife.World.SwingingDoor.CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) name: CanWalkThrough(Wall, Person) nameWithType: SwingingDoor.CanWalkThrough(Wall, Person) fullName: TinyLife.World.SwingingDoor.CanWalkThrough(TinyLife.World.Wall, TinyLife.Objects.Person) spec.csharp: - uid: TinyLife.World.SwingingDoor.CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) name: CanWalkThrough - name: ( - uid: TinyLife.World.Wall name: Wall - name: ',' - name: " " - uid: TinyLife.Objects.Person name: Person - name: ) spec.vb: - uid: TinyLife.World.SwingingDoor.CanWalkThrough(TinyLife.World.Wall,TinyLife.Objects.Person) name: CanWalkThrough - name: ( - uid: TinyLife.World.Wall name: Wall - name: ',' - name: " " - uid: TinyLife.Objects.Person name: Person - name: ) - uid: TinyLife.World.SwingingDoor.IsOpen* commentId: Overload:TinyLife.World.SwingingDoor.IsOpen name: IsOpen nameWithType: SwingingDoor.IsOpen fullName: TinyLife.World.SwingingDoor.IsOpen