TinyLifeWeb/docs/api/TinyLife.World.Opening.yml

1200 lines
39 KiB
YAML
Raw Normal View History

2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items:
- uid: TinyLife.World.Opening
commentId: T:TinyLife.World.Opening
id: Opening
parent: TinyLife.World
children:
2022-05-24 13:36:05 +02:00
- TinyLife.World.Opening.#ctor(TinyLife.World.OpeningType,System.Int32[])
2021-08-30 20:44:32 +02:00
- TinyLife.World.Opening.CanPlaceOn(TinyLife.Objects.FurnitureType)
2023-07-20 14:27:20 +02:00
- TinyLife.World.Opening.CanWalkThrough(TinyLife.World.Map,TinyLife.World.Wall,TinyLife.Objects.Person)
2021-08-04 06:51:12 +02:00
- TinyLife.World.Opening.Color
2022-05-24 13:36:05 +02:00
- TinyLife.World.Opening.Colors
2022-09-05 14:19:42 +02:00
- 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})
2022-05-24 13:36:05 +02:00
- TinyLife.World.Opening.GetDescription
2021-08-04 06:51:12 +02:00
- TinyLife.World.Opening.GetPrice
- TinyLife.World.Opening.Type
2022-05-24 13:36:05 +02:00
- TinyLife.World.Opening.Validate(TinyLife.World.Wall,TinyLife.World.Map)
2021-08-04 06:51:12 +02:00
langs:
- csharp
- vb
name: Opening
nameWithType: Opening
fullName: TinyLife.World.Opening
type: Class
source:
remote:
path: TinyLife/World/Opening.cs
2023-03-30 18:07:55 +02:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: Opening
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Opening.cs
2022-09-05 14:19:42 +02:00
startLine: 15
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nAn opening is some sort of extrusion in a <xref href=\"TinyLife.World.Wall\" data-throw-if-not-resolved=\"false\"></xref>, like a window or a door.\nOpenings are created from their underlying <xref href=\"TinyLife.World.OpeningType\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: >-
[DataContract]
2023-05-26 15:16:22 +02:00
public class Opening
2021-08-04 06:51:12 +02:00
content.vb: >-
<DataContract>
2023-05-26 15:16:22 +02:00
Public Class Opening
2021-08-04 06:51:12 +02:00
inheritance:
- System.Object
derivedClasses:
- TinyLife.World.Door
inheritedMembers:
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
extensionMethods:
- TinyLife.World.Opening.TinyLife.Utilities.Extensions.JsonCopy``1
attributes:
- type: System.Runtime.Serialization.DataContractAttribute
ctor: System.Runtime.Serialization.DataContractAttribute.#ctor
arguments: []
- uid: TinyLife.World.Opening.Type
commentId: F:TinyLife.World.Opening.Type
id: Type
parent: TinyLife.World.Opening
langs:
- csharp
- vb
name: Type
nameWithType: Opening.Type
fullName: TinyLife.World.Opening.Type
type: Field
source:
remote:
path: TinyLife/World/Opening.cs
2023-03-30 18:07:55 +02:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: Type
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Opening.cs
2022-09-05 14:19:42 +02:00
startLine: 22
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nThe <xref href=\"TinyLife.World.OpeningType\" data-throw-if-not-resolved=\"false\"></xref> that this opening has\n"
example: []
syntax:
content: >-
[DataMember]
public readonly OpeningType Type
return:
type: TinyLife.World.OpeningType
content.vb: >-
<DataMember>
Public ReadOnly Type As OpeningType
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.World.Opening.Color
commentId: F:TinyLife.World.Opening.Color
id: Color
parent: TinyLife.World.Opening
langs:
- csharp
- vb
name: Color
nameWithType: Opening.Color
fullName: TinyLife.World.Opening.Color
type: Field
source:
remote:
path: TinyLife/World/Opening.cs
2023-03-30 18:07:55 +02:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: Color
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Opening.cs
2022-09-05 14:19:42 +02:00
startLine: 28
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2022-05-24 13:36:05 +02:00
summary: "\nThe index of the <xref href=\"TinyLife.World.OpeningType\" data-throw-if-not-resolved=\"false\"></xref>&apos;s <xref href=\"TinyLife.World.OpeningType.Colors\" data-throw-if-not-resolved=\"false\"></xref> that this opening instance has\n"
2021-08-04 06:51:12 +02:00
example: []
syntax:
content: >-
[DataMember]
2022-05-24 13:36:05 +02:00
[Obsolete("Use Colors instead")]
2021-08-04 06:51:12 +02:00
public readonly int Color
return:
type: System.Int32
content.vb: >-
<DataMember>
2022-05-24 13:36:05 +02:00
<Obsolete("Use Colors instead")>
2021-08-04 06:51:12 +02:00
Public ReadOnly Color As Integer
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
2022-05-24 13:36:05 +02:00
- type: System.ObsoleteAttribute
ctor: System.ObsoleteAttribute.#ctor(System.String)
arguments:
- type: System.String
value: Use Colors instead
- uid: TinyLife.World.Opening.Colors
commentId: F:TinyLife.World.Opening.Colors
id: Colors
parent: TinyLife.World.Opening
langs:
- csharp
- vb
name: Colors
nameWithType: Opening.Colors
fullName: TinyLife.World.Opening.Colors
type: Field
source:
remote:
path: TinyLife/World/Opening.cs
2023-03-30 18:07:55 +02:00
branch: main
2022-05-24 13:36:05 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Colors
path: ../TinyLife/World/Opening.cs
2022-09-05 14:19:42 +02:00
startLine: 33
2022-05-24 13:36:05 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nThe indices of the <xref href=\"TinyLife.World.OpeningType\" data-throw-if-not-resolved=\"false\"></xref>&apos;s <xref href=\"TinyLife.World.OpeningType.Colors\" data-throw-if-not-resolved=\"false\"></xref> that this opening instance has.\n"
example: []
syntax:
content: >-
[DataMember]
public int[] Colors
return:
type: System.Int32[]
content.vb: >-
<DataMember>
Public Colors As Integer()
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.World.Opening.#ctor(TinyLife.World.OpeningType,System.Int32[])
commentId: M:TinyLife.World.Opening.#ctor(TinyLife.World.OpeningType,System.Int32[])
id: '#ctor(TinyLife.World.OpeningType,System.Int32[])'
2021-08-04 06:51:12 +02:00
parent: TinyLife.World.Opening
langs:
- csharp
- vb
2023-03-30 18:07:55 +02:00
name: Opening(OpeningType, int[])
nameWithType: Opening.Opening(OpeningType, int[])
fullName: TinyLife.World.Opening.Opening(TinyLife.World.OpeningType, int[])
2021-08-04 06:51:12 +02:00
type: Constructor
source:
remote:
path: TinyLife/World/Opening.cs
2023-03-30 18:07:55 +02:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: .ctor
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Opening.cs
2022-09-05 14:19:42 +02:00
startLine: 40
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nCreates a new opening from the given opening type and color\n"
example: []
syntax:
2022-05-24 13:36:05 +02:00
content: public Opening(OpeningType type, int[] colors)
2021-08-04 06:51:12 +02:00
parameters:
- id: type
type: TinyLife.World.OpeningType
description: The opening type
2022-05-24 13:36:05 +02:00
- id: colors
type: System.Int32[]
description: The indices of the colors to use
content.vb: Public Sub New(type As OpeningType, colors As Integer())
2021-08-04 06:51:12 +02:00
overload: TinyLife.World.Opening.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb: Opening.New(OpeningType, Integer())
fullName.vb: TinyLife.World.Opening.New(TinyLife.World.OpeningType, Integer())
name.vb: New(OpeningType, Integer())
2022-09-05 14:19:42 +02:00
- 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})
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})
2021-08-04 06:51:12 +02:00
parent: TinyLife.World.Opening
langs:
- csharp
- vb
2023-03-30 18:07:55 +02:00
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?)
2021-08-04 06:51:12 +02:00
type: Method
source:
remote:
path: TinyLife/World/Opening.cs
2023-03-30 18:07:55 +02:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: Draw
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Opening.cs
2022-09-05 14:19:42 +02:00
startLine: 57
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nDraws this opening in the world with the given settings\n"
example: []
syntax:
content: public virtual void Draw(GameTime time, SpriteBatch batch, Map map, Wall wall, Vector2 drawPos, bool vertical, float scale, float depth, Color? overrideColor)
parameters:
- id: time
2022-09-05 14:19:42 +02:00
type: Microsoft.Xna.Framework.GameTime
2021-08-04 06:51:12 +02:00
description: The game&apos;s time
- id: batch
2022-09-05 14:19:42 +02:00
type: Microsoft.Xna.Framework.Graphics.SpriteBatch
2021-08-04 06:51:12 +02:00
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
2022-09-05 14:19:42 +02:00
type: Microsoft.Xna.Framework.Vector2
2021-08-04 06:51:12 +02:00
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
2022-09-05 14:19:42 +02:00
type: System.Nullable{Microsoft.Xna.Framework.Color}
2021-08-04 06:51:12 +02:00
description: A color that should be used instead of this opening&apos;s default color, or null to use the opening&apos;s default color
content.vb: Public Overridable 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?)
overload: TinyLife.World.Opening.Draw*
2023-03-30 18:07:55 +02:00
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?)
2023-07-20 14:27:20 +02:00
- uid: TinyLife.World.Opening.CanWalkThrough(TinyLife.World.Map,TinyLife.World.Wall,TinyLife.Objects.Person)
commentId: M:TinyLife.World.Opening.CanWalkThrough(TinyLife.World.Map,TinyLife.World.Wall,TinyLife.Objects.Person)
id: CanWalkThrough(TinyLife.World.Map,TinyLife.World.Wall,TinyLife.Objects.Person)
2021-08-04 06:51:12 +02:00
parent: TinyLife.World.Opening
langs:
- csharp
- vb
2023-07-20 14:27:20 +02:00
name: CanWalkThrough(Map, Wall, Person)
nameWithType: Opening.CanWalkThrough(Map, Wall, Person)
fullName: TinyLife.World.Opening.CanWalkThrough(TinyLife.World.Map, TinyLife.World.Wall, TinyLife.Objects.Person)
2021-08-04 06:51:12 +02:00
type: Method
source:
remote:
path: TinyLife/World/Opening.cs
2023-03-30 18:07:55 +02:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: CanWalkThrough
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Opening.cs
2022-09-05 14:19:42 +02:00
startLine: 66
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nReturns whether a <xref href=\"TinyLife.Objects.Person\" data-throw-if-not-resolved=\"false\"></xref> is able to walk through a <xref href=\"TinyLife.World.Wall\" data-throw-if-not-resolved=\"false\"></xref> that has this opening.\nThis returns true for <xref href=\"TinyLife.World.Door\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.World.SwingingDoor\" data-throw-if-not-resolved=\"false\"></xref> and false for <xref href=\"TinyLife.World.Opening\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
2023-07-20 14:27:20 +02:00
content: public virtual bool CanWalkThrough(Map map, Wall wall, Person person)
2021-08-04 06:51:12 +02:00
parameters:
2023-07-20 14:27:20 +02:00
- id: map
type: TinyLife.World.Map
2021-08-04 06:51:12 +02:00
- id: wall
type: TinyLife.World.Wall
- id: person
type: TinyLife.Objects.Person
return:
type: System.Boolean
description: ''
2023-07-20 14:27:20 +02:00
content.vb: Public Overridable Function CanWalkThrough(map As Map, wall As Wall, person As Person) As Boolean
2021-08-04 06:51:12 +02:00
overload: TinyLife.World.Opening.CanWalkThrough*
2021-08-30 20:44:32 +02:00
- uid: TinyLife.World.Opening.CanPlaceOn(TinyLife.Objects.FurnitureType)
commentId: M:TinyLife.World.Opening.CanPlaceOn(TinyLife.Objects.FurnitureType)
id: CanPlaceOn(TinyLife.Objects.FurnitureType)
2021-08-04 06:51:12 +02:00
parent: TinyLife.World.Opening
langs:
- csharp
- vb
2021-08-30 20:44:32 +02:00
name: CanPlaceOn(FurnitureType)
nameWithType: Opening.CanPlaceOn(FurnitureType)
fullName: TinyLife.World.Opening.CanPlaceOn(TinyLife.Objects.FurnitureType)
2021-08-04 06:51:12 +02:00
type: Method
source:
remote:
path: TinyLife/World/Opening.cs
2023-03-30 18:07:55 +02:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-30 20:44:32 +02:00
id: CanPlaceOn
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Opening.cs
2022-09-05 14:19:42 +02:00
startLine: 75
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
2021-08-30 20:44:32 +02:00
summary: "\nWhether the given <xref href=\"TinyLife.Objects.FurnitureType\" data-throw-if-not-resolved=\"false\"></xref> can be attached to this opening.\nBy default, this method returns true when the furniture has the <xref href=\"TinyLife.Objects.ObjectCategory.CanCoverWindow\" data-throw-if-not-resolved=\"false\"></xref> category.\n"
2021-08-04 06:51:12 +02:00
example: []
syntax:
2021-08-30 20:44:32 +02:00
content: public virtual bool CanPlaceOn(FurnitureType type)
parameters:
- id: type
type: TinyLife.Objects.FurnitureType
2021-08-04 06:51:12 +02:00
return:
type: System.Boolean
description: Whether the opening is a window
2021-08-30 20:44:32 +02:00
content.vb: Public Overridable Function CanPlaceOn(type As FurnitureType) As Boolean
overload: TinyLife.World.Opening.CanPlaceOn*
2022-05-24 13:36:05 +02:00
- uid: TinyLife.World.Opening.Validate(TinyLife.World.Wall,TinyLife.World.Map)
commentId: M:TinyLife.World.Opening.Validate(TinyLife.World.Wall,TinyLife.World.Map)
id: Validate(TinyLife.World.Wall,TinyLife.World.Map)
parent: TinyLife.World.Opening
langs:
- csharp
- vb
name: Validate(Wall, Map)
nameWithType: Opening.Validate(Wall, Map)
fullName: TinyLife.World.Opening.Validate(TinyLife.World.Wall, TinyLife.World.Map)
type: Method
source:
remote:
path: TinyLife/World/Opening.cs
2023-03-30 18:07:55 +02:00
branch: main
2022-05-24 13:36:05 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Validate
path: ../TinyLife/World/Opening.cs
2022-09-05 14:19:42 +02:00
startLine: 85
2022-05-24 13:36:05 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nValidates this opening, returning false if it is somehow invalid. This method is called when a <xref href=\"TinyLife.World.Map\" data-throw-if-not-resolved=\"false\"></xref> is loaded.\n"
example: []
syntax:
content: public virtual bool Validate(Wall wall, Map map)
parameters:
- id: wall
type: TinyLife.World.Wall
description: The wall that this opening is on.
- id: map
type: TinyLife.World.Map
description: The map that this opening is on.
return:
type: System.Boolean
description: Whether this opening is valid.
content.vb: Public Overridable Function Validate(wall As Wall, map As Map) As Boolean
overload: TinyLife.World.Opening.Validate*
- uid: TinyLife.World.Opening.GetDescription
commentId: M:TinyLife.World.Opening.GetDescription
id: GetDescription
parent: TinyLife.World.Opening
langs:
- csharp
- vb
name: GetDescription()
nameWithType: Opening.GetDescription()
fullName: TinyLife.World.Opening.GetDescription()
type: Method
source:
remote:
path: TinyLife/World/Opening.cs
2023-03-30 18:07:55 +02:00
branch: main
2022-05-24 13:36:05 +02:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetDescription
path: ../TinyLife/World/Opening.cs
2022-09-05 14:19:42 +02:00
startLine: 97
2022-05-24 13:36:05 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nReturns a set of strings that should be displayed if this opening is hovered over in build mode.\n"
example: []
syntax:
content: public virtual IEnumerable<string> GetDescription()
return:
type: System.Collections.Generic.IEnumerable{System.String}
description: A set of description strings for this opening.
2023-03-30 18:07:55 +02:00
content.vb: Public Overridable Function GetDescription() As IEnumerable(Of String)
2022-05-24 13:36:05 +02:00
overload: TinyLife.World.Opening.GetDescription*
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Opening.GetPrice
commentId: M:TinyLife.World.Opening.GetPrice
id: GetPrice
parent: TinyLife.World.Opening
langs:
- csharp
- vb
name: GetPrice()
nameWithType: Opening.GetPrice()
fullName: TinyLife.World.Opening.GetPrice()
type: Method
source:
remote:
path: TinyLife/World/Opening.cs
2023-03-30 18:07:55 +02:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-08-04 06:51:12 +02:00
id: GetPrice
2022-03-09 16:13:05 +01:00
path: ../TinyLife/World/Opening.cs
2022-09-05 14:19:42 +02:00
startLine: 102
2021-08-04 06:51:12 +02:00
assemblies:
- Tiny Life
namespace: TinyLife.World
example: []
syntax:
content: public float GetPrice()
return:
type: System.Single
2023-03-30 18:07:55 +02:00
content.vb: Public Function GetPrice() As Single
2021-08-04 06:51:12 +02:00
overload: TinyLife.World.Opening.GetPrice*
references:
- uid: TinyLife.World.Wall
commentId: T:TinyLife.World.Wall
parent: TinyLife.World
name: Wall
nameWithType: Wall
fullName: TinyLife.World.Wall
- uid: TinyLife.World.OpeningType
commentId: T:TinyLife.World.OpeningType
parent: TinyLife.World
name: OpeningType
nameWithType: OpeningType
fullName: TinyLife.World.OpeningType
- uid: TinyLife.World
commentId: N:TinyLife.World
name: TinyLife.World
nameWithType: TinyLife.World
fullName: TinyLife.World
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.World
name: World
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.World
name: World
2021-08-04 06:51:12 +02:00
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
2021-08-04 06:51:12 +02:00
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
name: GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-08-04 06:51:12 +02:00
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
name: GetType()
2023-03-30 18:07:55 +02:00
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-08-04 06:51:12 +02:00
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
name: MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-08-04 06:51:12 +02:00
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-08-04 06:51:12 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-08-04 06:51:12 +02:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-08-04 06:51:12 +02:00
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +02:00
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
name: ToString()
2023-03-30 18:07:55 +02:00
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
2021-08-04 06:51:12 +02:00
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-08-04 06:51:12 +02:00
- name: (
- name: )
- uid: TinyLife.World.Opening.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy<Opening>(Opening)
nameWithType: Extensions.JsonCopy<Opening>(Opening)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.World.Opening>(TinyLife.World.Opening)
nameWithType.vb: Extensions.JsonCopy(Of Opening)(Opening)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.World.Opening)(TinyLife.World.Opening)
name.vb: JsonCopy(Of Opening)(Opening)
2021-08-04 06:51:12 +02:00
spec.csharp:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.Opening)
name: JsonCopy
- name: <
- uid: TinyLife.World.Opening
name: Opening
- name: '>'
2021-08-04 06:51:12 +02:00
- name: (
2023-03-30 18:07:55 +02:00
- uid: TinyLife.World.Opening
name: Opening
2021-08-04 06:51:12 +02:00
- name: )
spec.vb:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.Opening)
name: JsonCopy
2021-08-04 06:51:12 +02:00
- name: (
2023-03-30 18:07:55 +02:00
- name: Of
- name: " "
- uid: TinyLife.World.Opening
name: Opening
- name: )
- name: (
- uid: TinyLife.World.Opening
name: Opening
2021-08-04 06:51:12 +02:00
- name: )
- uid: System
commentId: N:System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2021-08-04 06:51:12 +02:00
name: System
nameWithType: System
fullName: System
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy<T>(T)
nameWithType: Extensions.JsonCopy<T>(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb: JsonCopy(Of T)(T)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy
- name: <
- name: T
- name: '>'
2021-08-04 06:51:12 +02:00
- name: (
- name: T
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy
- name: (
- name: Of
- name: " "
- name: T
- name: )
2021-08-04 06:51:12 +02:00
- name: (
- name: T
- name: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Utilities
name: Utilities
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Utilities
name: Utilities
2022-05-24 13:36:05 +02:00
- uid: TinyLife.World.OpeningType.Colors
commentId: F:TinyLife.World.OpeningType.Colors
2023-03-30 18:07:55 +02:00
name: Colors
nameWithType: OpeningType.Colors
fullName: TinyLife.World.OpeningType.Colors
2021-08-04 06:51:12 +02:00
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
name: int
nameWithType: int
fullName: int
nameWithType.vb: Integer
fullName.vb: Integer
name.vb: Integer
2022-05-24 13:36:05 +02:00
- uid: System.Int32[]
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
name: int[]
nameWithType: int[]
fullName: int[]
nameWithType.vb: Integer()
fullName.vb: Integer()
name.vb: Integer()
2022-05-24 13:36:05 +02:00
spec.csharp:
- uid: System.Int32
2023-03-30 18:07:55 +02:00
name: int
2022-05-24 13:36:05 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: '['
- name: ']'
2022-05-24 13:36:05 +02:00
spec.vb:
- uid: System.Int32
2023-03-30 18:07:55 +02:00
name: Integer
2022-05-24 13:36:05 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: (
- name: )
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Opening.#ctor*
commentId: Overload:TinyLife.World.Opening.#ctor
name: Opening
nameWithType: Opening.Opening
fullName: TinyLife.World.Opening.Opening
2023-03-30 18:07:55 +02:00
nameWithType.vb: Opening.New
fullName.vb: TinyLife.World.Opening.New
name.vb: New
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Opening.Draw*
commentId: Overload:TinyLife.World.Opening.Draw
name: Draw
nameWithType: Opening.Draw
fullName: TinyLife.World.Opening.Draw
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.GameTime
commentId: T:Microsoft.Xna.Framework.GameTime
parent: Microsoft.Xna.Framework
2021-08-04 06:51:12 +02:00
isExternal: true
name: GameTime
nameWithType: GameTime
2022-09-05 14:19:42 +02:00
fullName: Microsoft.Xna.Framework.GameTime
- uid: Microsoft.Xna.Framework.Graphics.SpriteBatch
commentId: T:Microsoft.Xna.Framework.Graphics.SpriteBatch
parent: Microsoft.Xna.Framework.Graphics
2021-08-04 06:51:12 +02:00
isExternal: true
name: SpriteBatch
nameWithType: SpriteBatch
2022-09-05 14:19:42 +02:00
fullName: Microsoft.Xna.Framework.Graphics.SpriteBatch
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Map
commentId: T:TinyLife.World.Map
parent: TinyLife.World
name: Map
nameWithType: Map
fullName: TinyLife.World.Map
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Vector2
commentId: T:Microsoft.Xna.Framework.Vector2
parent: Microsoft.Xna.Framework
2021-08-04 06:51:12 +02:00
isExternal: true
name: Vector2
nameWithType: Vector2
2022-09-05 14:19:42 +02:00
fullName: Microsoft.Xna.Framework.Vector2
2021-08-04 06:51:12 +02:00
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
2021-08-04 06:51:12 +02:00
- uid: System.Single
commentId: T:System.Single
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.single
name: float
nameWithType: float
fullName: float
nameWithType.vb: Single
fullName.vb: Single
name.vb: Single
2022-09-05 14:19:42 +02:00
- uid: System.Nullable{Microsoft.Xna.Framework.Color}
commentId: T:System.Nullable{Microsoft.Xna.Framework.Color}
2021-08-04 06:51:12 +02:00
parent: System
definition: System.Nullable`1
2023-03-30 18:07:55 +02:00
name: Color?
nameWithType: Color?
fullName: Microsoft.Xna.Framework.Color?
2021-08-04 06:51:12 +02:00
spec.csharp:
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Color
2021-08-04 06:51:12 +02:00
name: Color
isExternal: true
2023-03-30 18:07:55 +02:00
- name: '?'
2021-08-04 06:51:12 +02:00
spec.vb:
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework.Color
2021-08-04 06:51:12 +02:00
name: Color
isExternal: true
2023-03-30 18:07:55 +02:00
- name: '?'
2022-09-05 14:19:42 +02:00
- uid: Microsoft.Xna.Framework
commentId: N:Microsoft.Xna.Framework
isExternal: true
name: Microsoft.Xna.Framework
nameWithType: Microsoft.Xna.Framework
fullName: Microsoft.Xna.Framework
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
2022-09-05 14:19:42 +02:00
- 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
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
- 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
2021-08-04 06:51:12 +02:00
- uid: System.Nullable`1
commentId: T:System.Nullable`1
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
2021-08-04 06:51:12 +02:00
name: Nullable<T>
nameWithType: Nullable<T>
fullName: System.Nullable<T>
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
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
2021-08-04 06:51:12 +02:00
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Nullable`1
name: Nullable
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
- name: (
- name: Of
- name: " "
2021-08-04 06:51:12 +02:00
- 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.World.Door
commentId: T:TinyLife.World.Door
parent: TinyLife.World
name: Door
nameWithType: Door
fullName: TinyLife.World.Door
- uid: TinyLife.World.SwingingDoor
commentId: T:TinyLife.World.SwingingDoor
name: SwingingDoor
nameWithType: SwingingDoor
fullName: TinyLife.World.SwingingDoor
- uid: TinyLife.World.Opening
commentId: T:TinyLife.World.Opening
parent: TinyLife.World
name: Opening
nameWithType: Opening
fullName: TinyLife.World.Opening
- uid: TinyLife.World.Opening.CanWalkThrough*
commentId: Overload:TinyLife.World.Opening.CanWalkThrough
name: CanWalkThrough
nameWithType: Opening.CanWalkThrough
fullName: TinyLife.World.Opening.CanWalkThrough
- uid: TinyLife.Objects
commentId: N:TinyLife.Objects
name: TinyLife.Objects
nameWithType: TinyLife.Objects
fullName: TinyLife.Objects
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Objects
name: Objects
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Objects
name: Objects
2021-08-30 20:44:32 +02:00
- uid: TinyLife.Objects.FurnitureType
commentId: T:TinyLife.Objects.FurnitureType
parent: TinyLife.Objects
name: FurnitureType
nameWithType: FurnitureType
fullName: TinyLife.Objects.FurnitureType
2021-08-04 06:51:12 +02:00
- uid: TinyLife.Objects.ObjectCategory.CanCoverWindow
commentId: F:TinyLife.Objects.ObjectCategory.CanCoverWindow
2023-03-30 18:07:55 +02:00
name: CanCoverWindow
nameWithType: ObjectCategory.CanCoverWindow
fullName: TinyLife.Objects.ObjectCategory.CanCoverWindow
2021-08-30 20:44:32 +02:00
- uid: TinyLife.World.Opening.CanPlaceOn*
commentId: Overload:TinyLife.World.Opening.CanPlaceOn
name: CanPlaceOn
nameWithType: Opening.CanPlaceOn
fullName: TinyLife.World.Opening.CanPlaceOn
2022-05-24 13:36:05 +02:00
- uid: TinyLife.World.Opening.Validate*
commentId: Overload:TinyLife.World.Opening.Validate
name: Validate
nameWithType: Opening.Validate
fullName: TinyLife.World.Opening.Validate
- uid: TinyLife.World.Opening.GetDescription*
commentId: Overload:TinyLife.World.Opening.GetDescription
name: GetDescription
nameWithType: Opening.GetDescription
fullName: TinyLife.World.Opening.GetDescription
- uid: System.Collections.Generic.IEnumerable{System.String}
commentId: T:System.Collections.Generic.IEnumerable{System.String}
parent: System.Collections.Generic
definition: System.Collections.Generic.IEnumerable`1
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name: IEnumerable<string>
nameWithType: IEnumerable<string>
fullName: System.Collections.Generic.IEnumerable<string>
2022-05-24 13:36:05 +02:00
nameWithType.vb: IEnumerable(Of String)
2023-03-30 18:07:55 +02:00
fullName.vb: System.Collections.Generic.IEnumerable(Of String)
2022-05-24 13:36:05 +02:00
name.vb: IEnumerable(Of String)
spec.csharp:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2022-05-24 13:36:05 +02:00
- name: <
- uid: System.String
2023-03-30 18:07:55 +02:00
name: string
2022-05-24 13:36:05 +02:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.string
2022-05-24 13:36:05 +02:00
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
2022-05-24 13:36:05 +02:00
- uid: System.String
name: String
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.string
2022-05-24 13:36:05 +02:00
- name: )
- uid: System.Collections.Generic.IEnumerable`1
commentId: T:System.Collections.Generic.IEnumerable`1
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2022-05-24 13:36:05 +02:00
name: IEnumerable<T>
nameWithType: IEnumerable<T>
fullName: System.Collections.Generic.IEnumerable<T>
nameWithType.vb: IEnumerable(Of T)
fullName.vb: System.Collections.Generic.IEnumerable(Of T)
name.vb: IEnumerable(Of T)
spec.csharp:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2022-05-24 13:36:05 +02:00
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
2022-05-24 13:36:05 +02:00
- name: T
- name: )
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2022-05-24 13:36:05 +02:00
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
2021-08-04 06:51:12 +02:00
- uid: TinyLife.World.Opening.GetPrice*
commentId: Overload:TinyLife.World.Opening.GetPrice
name: GetPrice
nameWithType: Opening.GetPrice
fullName: TinyLife.World.Opening.GetPrice