TinyLifeWeb/docs/api/TinyLife.World.MapSection.yml
2022-05-24 13:36:05 +02:00

1024 lines
30 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: TinyLife.World.MapSection
commentId: T:TinyLife.World.MapSection
id: MapSection
parent: TinyLife.World
children:
- TinyLife.World.MapSection.#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Point)
- TinyLife.World.MapSection.Bleed
- TinyLife.World.MapSection.Pos
- TinyLife.World.MapSection.SectionPos
- TinyLife.World.MapSection.Size
- TinyLife.World.MapSection.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
- TinyLife.World.MapSection.Validate
- TinyLife.World.MapSection.ValidateEarly(TinyLife.World.Map)
langs:
- csharp
- vb
name: MapSection
nameWithType: MapSection
fullName: TinyLife.World.MapSection
type: Class
source:
remote:
path: TinyLife/World/MapSection.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MapSection
path: ../TinyLife/World/MapSection.cs
startLine: 16
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nA map section is a small area in a <xref href=\"TinyLife.World.MapSection.Map\" data-throw-if-not-resolved=\"false\"></xref> that actually contains the area&apos;s objects.\nA map section is always <xref href=\"TinyLife.World.MapSection.Size\" data-throw-if-not-resolved=\"false\"></xref>x<xref href=\"TinyLife.World.MapSection.Size\" data-throw-if-not-resolved=\"false\"></xref> tiles large.\n"
example: []
syntax:
content: >-
[DataContract]
public class MapSection : JsonTypeSafeGenericDataHolder, IGenericDataHolder
content.vb: >-
<DataContract>
Public Class MapSection
Inherits JsonTypeSafeGenericDataHolder
Implements IGenericDataHolder
inheritance:
- System.Object
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
implements:
- MLEM.Misc.IGenericDataHolder
inheritedMembers:
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
- 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.MapSection.TinyLife.Utilities.Extensions.JsonCopy``1
attributes:
- type: System.Runtime.Serialization.DataContractAttribute
ctor: System.Runtime.Serialization.DataContractAttribute.#ctor
arguments: []
modifiers.csharp:
- public
- class
modifiers.vb:
- Public
- Class
- uid: TinyLife.World.MapSection.Size
commentId: F:TinyLife.World.MapSection.Size
id: Size
parent: TinyLife.World.MapSection
langs:
- csharp
- vb
name: Size
nameWithType: MapSection.Size
fullName: TinyLife.World.MapSection.Size
type: Field
source:
remote:
path: TinyLife/World/MapSection.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Size
path: ../TinyLife/World/MapSection.cs
startLine: 23
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nThe constant size of each map section.\nThis value is set to 8.\n"
example: []
syntax:
content: public const int Size = 8
return:
type: System.Int32
content.vb: Public Const Size As Integer = 8
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.World.MapSection.Bleed
commentId: F:TinyLife.World.MapSection.Bleed
id: Bleed
parent: TinyLife.World.MapSection
langs:
- csharp
- vb
name: Bleed
nameWithType: MapSection.Bleed
fullName: TinyLife.World.MapSection.Bleed
type: Field
source:
remote:
path: TinyLife/World/MapSection.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Bleed
path: ../TinyLife/World/MapSection.cs
startLine: 29
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nA constant value that determines the radius of how many sections (in addition to its own section) a <xref href=\"TinyLife.World.Room\" data-throw-if-not-resolved=\"false\"></xref> or <xref href=\"TinyLife.World.Roof\" data-throw-if-not-resolved=\"false\"></xref> can span.\nThis value is used by <xref href=\"TinyLife.World.MapSection.GetRoom(Microsoft.Xna.Framework.Point)\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.World.MapSection.GetRoof(Microsoft.Xna.Framework.Point)\" data-throw-if-not-resolved=\"false\"></xref> to query additional sections.\nThis value is set to 2.\n"
example: []
syntax:
content: public const int Bleed = 2
return:
type: System.Int32
content.vb: Public Const Bleed As Integer = 2
modifiers.csharp:
- public
- const
modifiers.vb:
- Public
- Const
- uid: TinyLife.World.MapSection.SectionPos
commentId: F:TinyLife.World.MapSection.SectionPos
id: SectionPos
parent: TinyLife.World.MapSection
langs:
- csharp
- vb
name: SectionPos
nameWithType: MapSection.SectionPos
fullName: TinyLife.World.MapSection.SectionPos
type: Field
source:
remote:
path: TinyLife/World/MapSection.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SectionPos
path: ../TinyLife/World/MapSection.cs
startLine: 35
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nThe position, in section coordinates, of this section on the map.\n"
example: []
syntax:
content: >-
[DataMember]
public readonly Point SectionPos
return:
type: Microsoft.Xna.Framework.Point
content.vb: >-
<DataMember>
Public ReadOnly SectionPos As Point
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
modifiers.csharp:
- public
- readonly
modifiers.vb:
- Public
- ReadOnly
- uid: TinyLife.World.MapSection.Pos
commentId: P:TinyLife.World.MapSection.Pos
id: Pos
parent: TinyLife.World.MapSection
langs:
- csharp
- vb
name: Pos
nameWithType: MapSection.Pos
fullName: TinyLife.World.MapSection.Pos
type: Property
source:
remote:
path: TinyLife/World/MapSection.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Pos
path: ../TinyLife/World/MapSection.cs
startLine: 39
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nThe position, in tile coordinates, of this section&apos;s top left corner.\n"
example: []
syntax:
content: public Point Pos { get; }
parameters: []
return:
type: Microsoft.Xna.Framework.Point
content.vb: Public ReadOnly Property Pos As Point
overload: TinyLife.World.MapSection.Pos*
modifiers.csharp:
- public
- get
modifiers.vb:
- Public
- ReadOnly
- uid: TinyLife.World.MapSection.#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Point)
commentId: M:TinyLife.World.MapSection.#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Point)
id: '#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Point)'
parent: TinyLife.World.MapSection
langs:
- csharp
- vb
name: MapSection(Map, Point)
nameWithType: MapSection.MapSection(Map, Point)
fullName: TinyLife.World.MapSection.MapSection(TinyLife.World.Map, Microsoft.Xna.Framework.Point)
type: Constructor
source:
remote:
path: TinyLife/World/MapSection.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/World/MapSection.cs
startLine: 61
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nCreates a new map section on the given map, with the given section position.\nAlso fills this map&apos;s tile array with the Grass tile.\n"
example: []
syntax:
content: public MapSection(Map map, Point sectionPos)
parameters:
- id: map
type: TinyLife.World.Map
description: The map
- id: sectionPos
type: Microsoft.Xna.Framework.Point
description: The section coordinates
content.vb: Public Sub New(map As Map, sectionPos As Point)
overload: TinyLife.World.MapSection.#ctor*
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: TinyLife.World.MapSection.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId: M:TinyLife.World.MapSection.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
id: Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent: TinyLife.World.MapSection
langs:
- csharp
- vb
name: Update(GameTime, TimeSpan, Single)
nameWithType: MapSection.Update(GameTime, TimeSpan, Single)
fullName: TinyLife.World.MapSection.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, System.Single)
type: Method
source:
remote:
path: TinyLife/World/MapSection.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Update
path: ../TinyLife/World/MapSection.cs
startLine: 78
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nUpdates this map section and all of the objects on it\n"
example: []
syntax:
content: public void Update(GameTime time, TimeSpan passedInGame, float speedMultiplier)
parameters:
- id: time
type: Microsoft.Xna.Framework.GameTime
description: The game&apos;s time
- id: passedInGame
type: System.TimeSpan
description: The amount of time that has passed in game
- id: speedMultiplier
type: System.Single
description: The game speed multiplier, which represents how fast things should happen, which is usually determined by <xref href="TinyLife.GameImpl.Speed" data-throw-if-not-resolved="false"></xref>
content.vb: Public Sub Update(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single)
overload: TinyLife.World.MapSection.Update*
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: TinyLife.World.MapSection.ValidateEarly(TinyLife.World.Map)
commentId: M:TinyLife.World.MapSection.ValidateEarly(TinyLife.World.Map)
id: ValidateEarly(TinyLife.World.Map)
parent: TinyLife.World.MapSection
langs:
- csharp
- vb
name: ValidateEarly(Map)
nameWithType: MapSection.ValidateEarly(Map)
fullName: TinyLife.World.MapSection.ValidateEarly(TinyLife.World.Map)
type: Method
source:
remote:
path: TinyLife/World/MapSection.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ValidateEarly
path: ../TinyLife/World/MapSection.cs
startLine: 94
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nValidates this map section early, setting its map, and adding its objects to the appropriate collections, and validating the section&apos;s tiles.\nThis method is called for all <xref href=\"TinyLife.World.MapSection.Map\" data-throw-if-not-resolved=\"false\"></xref> sections before <xref href=\"TinyLife.World.MapSection.Validate\" data-throw-if-not-resolved=\"false\"></xref> is called for any sections.\n"
example: []
syntax:
content: public void ValidateEarly(Map map)
parameters:
- id: map
type: TinyLife.World.Map
description: The map that this section is on.
content.vb: Public Sub ValidateEarly(map As Map)
overload: TinyLife.World.MapSection.ValidateEarly*
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: TinyLife.World.MapSection.Validate
commentId: M:TinyLife.World.MapSection.Validate
id: Validate
parent: TinyLife.World.MapSection
langs:
- csharp
- vb
name: Validate()
nameWithType: MapSection.Validate()
fullName: TinyLife.World.MapSection.Validate()
type: Method
source:
remote:
path: TinyLife/World/MapSection.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Validate
path: ../TinyLife/World/MapSection.cs
startLine: 117
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: "\nThis method is called when this object is loaded from disk.\nWhen called on a map section, each of its <xref href=\"TinyLife.Objects.MapObject\" data-throw-if-not-resolved=\"false\"></xref> instances is validated.\n"
example: []
syntax:
content: public void Validate()
content.vb: Public Sub Validate
overload: TinyLife.World.MapSection.Validate*
modifiers.csharp:
- public
modifiers.vb:
- Public
references:
- uid: TinyLife.World.MapSection.Map
commentId: F:TinyLife.World.MapSection.Map
isExternal: true
- uid: TinyLife.World.MapSection.Size
commentId: F:TinyLife.World.MapSection.Size
isExternal: true
- uid: TinyLife.World
commentId: N:TinyLife.World
name: TinyLife.World
nameWithType: TinyLife.World
fullName: TinyLife.World
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
name: Object
nameWithType: Object
fullName: System.Object
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
commentId: T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder
parent: MLEM.Data.Json
isExternal: true
name: JsonTypeSafeGenericDataHolder
nameWithType: JsonTypeSafeGenericDataHolder
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
- uid: MLEM.Misc.IGenericDataHolder
commentId: T:MLEM.Misc.IGenericDataHolder
parent: MLEM.Misc
isExternal: true
name: IGenericDataHolder
nameWithType: IGenericDataHolder
fullName: MLEM.Misc.IGenericDataHolder
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
isExternal: true
name: SetData(String, Object)
nameWithType: JsonTypeSafeGenericDataHolder.SetData(String, Object)
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String, System.Object)
spec.csharp:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
name: SetData
nameWithType: JsonTypeSafeGenericDataHolder.SetData
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.String
name: String
nameWithType: String
fullName: System.String
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
name: SetData
nameWithType: JsonTypeSafeGenericDataHolder.SetData
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.String
name: String
nameWithType: String
fullName: System.String
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
isExternal: true
name: GetData<T>(String)
nameWithType: JsonTypeSafeGenericDataHolder.GetData<T>(String)
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData<T>(System.String)
nameWithType.vb: JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(System.String)
name.vb: GetData(Of T)(String)
spec.csharp:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
name: GetData<T>
nameWithType: JsonTypeSafeGenericDataHolder.GetData<T>
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData<T>
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.String
name: String
nameWithType: String
fullName: System.String
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
name: GetData(Of T)
nameWithType: JsonTypeSafeGenericDataHolder.GetData(Of T)
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.String
name: String
nameWithType: String
fullName: System.String
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
isExternal: true
name: GetDataKeys()
nameWithType: JsonTypeSafeGenericDataHolder.GetDataKeys()
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys()
spec.csharp:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
name: GetDataKeys
nameWithType: JsonTypeSafeGenericDataHolder.GetDataKeys
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
name: GetDataKeys
nameWithType: JsonTypeSafeGenericDataHolder.GetDataKeys
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
name: Equals(Object)
nameWithType: Object.Equals(Object)
fullName: System.Object.Equals(System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
name: Equals(Object, Object)
nameWithType: Object.Equals(Object, Object)
fullName: System.Object.Equals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
name: GetHashCode()
nameWithType: Object.GetHashCode()
fullName: System.Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
name: GetType()
nameWithType: Object.GetType()
fullName: System.Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
name: MemberwiseClone()
nameWithType: Object.MemberwiseClone()
fullName: System.Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
name: ReferenceEquals(Object, Object)
nameWithType: Object.ReferenceEquals(Object, Object)
fullName: System.Object.ReferenceEquals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
name: ToString()
nameWithType: Object.ToString()
fullName: System.Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.World.MapSection.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<MapSection>()
nameWithType: Extensions.JsonCopy<MapSection>()
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.World.MapSection>()
nameWithType.vb: Extensions.JsonCopy(Of MapSection)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.World.MapSection)()
name.vb: JsonCopy(Of MapSection)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy<MapSection>
nameWithType: Extensions.JsonCopy<MapSection>
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.World.MapSection>
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of MapSection)
nameWithType: Extensions.JsonCopy(Of MapSection)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.World.MapSection)
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System
commentId: N:System
isExternal: true
name: System
nameWithType: System
fullName: System
- uid: MLEM.Data.Json
commentId: N:MLEM.Data.Json
isExternal: true
name: MLEM.Data.Json
nameWithType: MLEM.Data.Json
fullName: MLEM.Data.Json
- uid: MLEM.Misc
commentId: N:MLEM.Misc
isExternal: true
name: MLEM.Misc
nameWithType: MLEM.Misc
fullName: MLEM.Misc
- 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)
name: JsonCopy<T>
nameWithType: Extensions.JsonCopy<T>
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- 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
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
name: Int32
nameWithType: Int32
fullName: System.Int32
- uid: TinyLife.World.Room
commentId: T:TinyLife.World.Room
parent: TinyLife.World
name: Room
nameWithType: Room
fullName: TinyLife.World.Room
- uid: TinyLife.World.Roof
commentId: T:TinyLife.World.Roof
parent: TinyLife.World
name: Roof
nameWithType: Roof
fullName: TinyLife.World.Roof
- uid: TinyLife.World.MapSection.GetRoom(Microsoft.Xna.Framework.Point)
commentId: M:TinyLife.World.MapSection.GetRoom(Microsoft.Xna.Framework.Point)
isExternal: true
- uid: TinyLife.World.MapSection.GetRoof(Microsoft.Xna.Framework.Point)
commentId: M:TinyLife.World.MapSection.GetRoof(Microsoft.Xna.Framework.Point)
isExternal: true
- uid: Microsoft.Xna.Framework.Point
commentId: T:Microsoft.Xna.Framework.Point
parent: Microsoft.Xna.Framework
isExternal: true
name: Point
nameWithType: Point
fullName: Microsoft.Xna.Framework.Point
- uid: Microsoft.Xna.Framework
commentId: N:Microsoft.Xna.Framework
isExternal: true
name: Microsoft.Xna.Framework
nameWithType: Microsoft.Xna.Framework
fullName: Microsoft.Xna.Framework
- uid: TinyLife.World.MapSection.Pos*
commentId: Overload:TinyLife.World.MapSection.Pos
name: Pos
nameWithType: MapSection.Pos
fullName: TinyLife.World.MapSection.Pos
- uid: TinyLife.World.MapSection.#ctor*
commentId: Overload:TinyLife.World.MapSection.#ctor
name: MapSection
nameWithType: MapSection.MapSection
fullName: TinyLife.World.MapSection.MapSection
- uid: TinyLife.World.Map
commentId: T:TinyLife.World.Map
parent: TinyLife.World
name: Map
nameWithType: Map
fullName: TinyLife.World.Map
- uid: TinyLife.GameImpl.Speed
commentId: P:TinyLife.GameImpl.Speed
isExternal: true
- uid: TinyLife.World.MapSection.Update*
commentId: Overload:TinyLife.World.MapSection.Update
name: Update
nameWithType: MapSection.Update
fullName: TinyLife.World.MapSection.Update
- 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: System.TimeSpan
commentId: T:System.TimeSpan
parent: System
isExternal: true
name: TimeSpan
nameWithType: TimeSpan
fullName: System.TimeSpan
- uid: System.Single
commentId: T:System.Single
parent: System
isExternal: true
name: Single
nameWithType: Single
fullName: System.Single
- uid: TinyLife.World.MapSection.Validate
commentId: M:TinyLife.World.MapSection.Validate
isExternal: true
- uid: TinyLife.World.MapSection.ValidateEarly*
commentId: Overload:TinyLife.World.MapSection.ValidateEarly
name: ValidateEarly
nameWithType: MapSection.ValidateEarly
fullName: TinyLife.World.MapSection.ValidateEarly
- uid: TinyLife.Objects.MapObject
commentId: T:TinyLife.Objects.MapObject
parent: TinyLife.Objects
name: MapObject
nameWithType: MapObject
fullName: TinyLife.Objects.MapObject
- uid: TinyLife.World.MapSection.Validate*
commentId: Overload:TinyLife.World.MapSection.Validate
name: Validate
nameWithType: MapSection.Validate
fullName: TinyLife.World.MapSection.Validate
- uid: TinyLife.Objects
commentId: N:TinyLife.Objects
name: TinyLife.Objects
nameWithType: TinyLife.Objects
fullName: TinyLife.Objects