2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.World.MapSection
commentId : T:TinyLife.World.MapSection
id : MapSection
parent : TinyLife.World
children :
2022-09-05 14:19:42 +02:00
- TinyLife.World.MapSection.#ctor(TinyLife.World.Map,Microsoft.Xna.Framework.Point)
2021-11-23 16:24:04 +01:00
- TinyLife.World.MapSection.Bleed
2023-10-11 16:05:32 +02:00
- TinyLife.World.MapSection.GetAllTiles
- TinyLife.World.MapSection.OtherFloorsWithTiles
2021-08-04 06:51:12 +02:00
- TinyLife.World.MapSection.Pos
- TinyLife.World.MapSection.SectionPos
- TinyLife.World.MapSection.Size
2024-10-17 17:28:12 +02:00
- TinyLife.World.MapSection.Validate(TinyLife.Utilities.AppliedMigrations)
2022-01-01 17:06:03 +01:00
- TinyLife.World.MapSection.ValidateEarly(TinyLife.World.Map)
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
name : MapSection
nameWithType : MapSection
fullName : TinyLife.World.MapSection
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : >-
A 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's objects.
A 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.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
[ DataContract]
2021-11-23 16:24:04 +01:00
public class MapSection : JsonTypeSafeGenericDataHolder, IGenericDataHolder
2021-08-04 06:51:12 +02:00
content.vb : >-
<DataContract>
2023-03-30 18:07:55 +02:00
Public Class MapSection Inherits JsonTypeSafeGenericDataHolder Implements IGenericDataHolder
2021-08-04 06:51:12 +02:00
inheritance :
- System.Object
2021-11-23 16:24:04 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-08-04 06:51:12 +02:00
implements :
- MLEM.Misc.IGenericDataHolder
inheritedMembers :
2022-12-20 13:25:03 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
2021-11-23 16:24:04 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-08-04 06:51:12 +02:00
- 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 : [ ]
- 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
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : >-
The constant size of each map section.
This value is set to 8.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : public const int Size = 8
return :
type : System.Int32
content.vb : Public Const Size As Integer = 8
2021-11-23 16:24:04 +01:00
- 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
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : >-
A 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.
2024-07-26 12:47:59 +02:00
This value is used by <xref href="TinyLife.World.Map.GetRoom(Microsoft.Xna.Framework.Point%2cSystem.Int32)" data-throw-if-not-resolved="false"></xref>, <xref href="TinyLife.World.Map.GetRoofs(MLEM.Maths.RectangleF)" data-throw-if-not-resolved="false"></xref> and <xref href="TinyLife.World.Map.GetRoof(Microsoft.Xna.Framework.Point%2cSystem.Int32)" data-throw-if-not-resolved="false"></xref> to query additional sections.
2024-01-07 16:53:47 +01:00
This value is set to 2.
2021-11-23 16:24:04 +01:00
example : [ ]
syntax :
content : public const int Bleed = 2
return :
type : System.Int32
content.vb : Public Const Bleed As Integer = 2
2021-08-04 06:51:12 +02:00
- 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
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : The position, in section coordinates, of this section on the map.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public readonly Point SectionPos
return :
2022-09-05 14:19:42 +02:00
type : Microsoft.Xna.Framework.Point
2021-08-04 06:51:12 +02:00
content.vb : >-
<DataMember>
Public ReadOnly SectionPos As Point
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
- 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
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : The position, in tile coordinates, of this section's top left corner.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : public Point Pos { get; }
parameters : [ ]
return :
2022-09-05 14:19:42 +02:00
type : Microsoft.Xna.Framework.Point
2021-08-04 06:51:12 +02:00
content.vb : Public ReadOnly Property Pos As Point
overload : TinyLife.World.MapSection.Pos*
2023-10-11 16:05:32 +02:00
- uid : TinyLife.World.MapSection.OtherFloorsWithTiles
commentId : P:TinyLife.World.MapSection.OtherFloorsWithTiles
id : OtherFloorsWithTiles
parent : TinyLife.World.MapSection
langs :
- csharp
- vb
name : OtherFloorsWithTiles
nameWithType : MapSection.OtherFloorsWithTiles
fullName : TinyLife.World.MapSection.OtherFloorsWithTiles
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : Returns a set of floors that also have tiles on them, in addition to the ground floor (or the zeroth floor).
2023-10-11 16:05:32 +02:00
example : [ ]
syntax :
content : public ICollection<int> OtherFloorsWithTiles { get; }
parameters : [ ]
return :
type : System.Collections.Generic.ICollection{System.Int32}
content.vb : Public ReadOnly Property OtherFloorsWithTiles As ICollection(Of Integer)
overload : TinyLife.World.MapSection.OtherFloorsWithTiles*
2022-09-05 14:19:42 +02:00
- 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)'
2021-08-04 06:51:12 +02:00
parent : TinyLife.World.MapSection
langs :
- csharp
- vb
name : MapSection(Map, Point)
nameWithType : MapSection.MapSection(Map, Point)
2022-09-05 14:19:42 +02:00
fullName : TinyLife.World.MapSection.MapSection(TinyLife.World.Map, Microsoft.Xna.Framework.Point)
2021-08-04 06:51:12 +02:00
type : Constructor
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : >-
Creates a new map section on the given map, with the given section position.
Also fills this map's tile array with the Grass tile.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : public MapSection(Map map, Point sectionPos)
parameters :
- id : map
type : TinyLife.World.Map
description : The map
- id : sectionPos
2022-09-05 14:19:42 +02:00
type : Microsoft.Xna.Framework.Point
2021-08-04 06:51:12 +02:00
description : The section coordinates
content.vb : Public Sub New(map As Map, sectionPos As Point)
overload : TinyLife.World.MapSection.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : MapSection.New(Map, Point)
fullName.vb : TinyLife.World.MapSection.New(TinyLife.World.Map, Microsoft.Xna.Framework.Point)
name.vb : New(Map, Point)
2022-01-01 17:06:03 +01:00
- 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
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : >-
Validates this map section early, setting its map, and adding its objects to the appropriate collections, and validating the section's tiles.
2024-10-17 17:28:12 +02:00
This 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(TinyLife.Utilities.AppliedMigrations)" data-throw-if-not-resolved="false"></xref> is called for any sections.
2022-01-01 17:06:03 +01:00
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*
2024-10-17 17:28:12 +02:00
- uid : TinyLife.World.MapSection.Validate(TinyLife.Utilities.AppliedMigrations)
commentId : M:TinyLife.World.MapSection.Validate(TinyLife.Utilities.AppliedMigrations)
id : Validate(TinyLife.Utilities.AppliedMigrations)
2021-08-04 06:51:12 +02:00
parent : TinyLife.World.MapSection
langs :
- csharp
- vb
2024-10-17 17:28:12 +02:00
name : Validate(AppliedMigrations)
nameWithType : MapSection.Validate(AppliedMigrations)
fullName : TinyLife.World.MapSection.Validate(TinyLife.Utilities.AppliedMigrations)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : >-
This method is called when this object is loaded from disk.
When called on a map section, each of its <xref href="TinyLife.Objects.MapObject" data-throw-if-not-resolved="false"></xref> instances is validated.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2024-10-17 17:28:12 +02:00
content : public void Validate(AppliedMigrations appliedMigrations)
parameters :
- id : appliedMigrations
type : TinyLife.Utilities.AppliedMigrations
content.vb : Public Sub Validate(appliedMigrations As AppliedMigrations)
2021-08-04 06:51:12 +02:00
overload : TinyLife.World.MapSection.Validate*
2023-10-11 16:05:32 +02:00
- uid : TinyLife.World.MapSection.GetAllTiles
commentId : M:TinyLife.World.MapSection.GetAllTiles
id : GetAllTiles
parent : TinyLife.World.MapSection
langs :
- csharp
- vb
name : GetAllTiles()
nameWithType : MapSection.GetAllTiles()
fullName : TinyLife.World.MapSection.GetAllTiles()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : Returns a set of all the tiles in this map section, including all tiles on the ground floor and all additional nonnull tiles on floors above.
2023-10-11 16:05:32 +02:00
example : [ ]
syntax :
content : public IEnumerable<(Point Pos, int Floor, Tile Tile)> GetAllTiles()
return :
type : System.Collections.Generic.IEnumerable{System.ValueTuple{Microsoft.Xna.Framework.Point,System.Int32,TinyLife.World.Tile}}
description : A set of all tiles in this section.
content.vb : Public Function GetAllTiles() As IEnumerable(Of (Pos As Point, Floor As Integer, Tile As Tile))
overload : TinyLife.World.MapSection.GetAllTiles*
2021-08-04 06:51:12 +02:00
references :
- uid : TinyLife.World.MapSection.Map
commentId : F:TinyLife.World.MapSection.Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.MapSection.html#TinyLife_World_MapSection_Map
2023-03-30 18:07:55 +02:00
name : Map
nameWithType : MapSection.Map
fullName : TinyLife.World.MapSection.Map
2021-08-04 06:51:12 +02:00
- uid : TinyLife.World.MapSection.Size
commentId : F:TinyLife.World.MapSection.Size
2024-01-07 16:53:47 +01:00
href : TinyLife.World.MapSection.html#TinyLife_World_MapSection_Size
2023-03-30 18:07:55 +02:00
name : Size
nameWithType : MapSection.Size
fullName : TinyLife.World.MapSection.Size
2021-08-04 06:51:12 +02:00
- uid : TinyLife.World
commentId : N : TinyLife.World
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-08-04 06:51:12 +02:00
name : TinyLife.World
nameWithType : TinyLife.World
fullName : TinyLife.World
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.World
name : World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.World
name : World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.html
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-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
commentId : T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder
parent : MLEM.Data.Json
2021-08-04 06:51:12 +02:00
isExternal : true
2021-11-23 16:24:04 +01:00
name : JsonTypeSafeGenericDataHolder
nameWithType : JsonTypeSafeGenericDataHolder
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-08-04 06:51:12 +02:00
- uid : MLEM.Misc.IGenericDataHolder
commentId : T:MLEM.Misc.IGenericDataHolder
parent : MLEM.Misc
isExternal : true
name : IGenericDataHolder
nameWithType : IGenericDataHolder
fullName : MLEM.Misc.IGenericDataHolder
2022-12-20 13:25:03 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
definition : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : SetData<T>(string, T)
nameWithType : JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
2022-12-20 13:25:03 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01: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
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
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.string
name : GetData<T>(string)
nameWithType : JsonTypeSafeGenericDataHolder.GetData<T>(string)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData<T>(string)
2021-11-23 16:24:04 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
2021-08-04 06:51:12 +02:00
name.vb : GetData(Of T)(String)
spec.csharp :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
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.string
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-08-04 06:51:12 +02:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2021-08-04 06:51:12 +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
2021-08-04 06:51:12 +02:00
- name : )
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-08-04 06:51:12 +02:00
isExternal : true
name : GetDataKeys()
2021-11-23 16:24:04 +01:00
nameWithType : JsonTypeSafeGenericDataHolder.GetDataKeys()
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys()
2021-08-04 06:51:12 +02:00
spec.csharp :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-08-04 06:51:12 +02:00
name : GetDataKeys
isExternal : true
- name : (
- name : )
spec.vb :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-08-04 06:51:12 +02:00
name : GetDataKeys
isExternal : true
- name : (
- name : )
- 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.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)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
name : JsonCopy<MapSection>(MapSection)
nameWithType : Extensions.JsonCopy<MapSection>(MapSection)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.World.MapSection>(TinyLife.World.MapSection)
nameWithType.vb : Extensions.JsonCopy(Of MapSection)(MapSection)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.World.MapSection)(TinyLife.World.MapSection)
name.vb : JsonCopy(Of MapSection)(MapSection)
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.MapSection)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- uid : TinyLife.World.MapSection
name : MapSection
2024-01-07 16:53:47 +01:00
href : TinyLife.World.MapSection.html
2023-03-30 18:07:55 +02:00
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.World.MapSection
name : MapSection
2024-01-07 16:53:47 +01:00
href : TinyLife.World.MapSection.html
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.MapSection)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- uid : TinyLife.World.MapSection
name : MapSection
2024-01-07 16:53:47 +01:00
href : TinyLife.World.MapSection.html
2023-03-30 18:07:55 +02:00
- name : )
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.World.MapSection
name : MapSection
2024-01-07 16:53:47 +01:00
href : TinyLife.World.MapSection.html
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
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json
commentId : N : MLEM.Data.Json
isExternal : true
name : MLEM.Data.Json
nameWithType : MLEM.Data.Json
fullName : MLEM.Data.Json
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Data
name : Data
isExternal : true
- name : .
- uid : MLEM.Data.Json
name : Json
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Data
name : Data
isExternal : true
- name : .
- uid : MLEM.Data.Json
name : Json
isExternal : true
2021-08-04 06:51:12 +02:00
- uid : MLEM.Misc
commentId : N : MLEM.Misc
isExternal : true
name : MLEM.Misc
nameWithType : MLEM.Misc
fullName : MLEM.Misc
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Misc
name : Misc
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Misc
name : Misc
isExternal : true
2022-12-20 13:25:03 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : SetData<T>(string, T)
nameWithType : JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
2022-12-20 13:25:03 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01: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
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-08-04 06:51:12 +02:00
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- 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
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- 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
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html
2021-08-04 06:51:12 +02:00
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-08-04 06:51:12 +02:00
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
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
2021-11-23 16:24:04 +01:00
- uid : TinyLife.World.Room
commentId : T:TinyLife.World.Room
parent : TinyLife.World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Room.html
2021-11-23 16:24:04 +01:00
name : Room
nameWithType : Room
fullName : TinyLife.World.Room
- uid : TinyLife.World.Roof
commentId : T:TinyLife.World.Roof
parent : TinyLife.World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Roof.html
2021-11-23 16:24:04 +01:00
name : Roof
nameWithType : Roof
fullName : TinyLife.World.Roof
2023-10-11 16:05:32 +02:00
- uid : TinyLife.World.Map.GetRoom(Microsoft.Xna.Framework.Point,System.Int32)
commentId : M:TinyLife.World.Map.GetRoom(Microsoft.Xna.Framework.Point,System.Int32)
2021-11-23 16:24:04 +01:00
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html#TinyLife_World_Map_GetRoom_Microsoft_Xna_Framework_Point_System_Int32_
2023-10-11 16:05:32 +02:00
name : GetRoom(Point, int)
nameWithType : Map.GetRoom(Point, int)
fullName : TinyLife.World.Map.GetRoom(Microsoft.Xna.Framework.Point, int)
nameWithType.vb : Map.GetRoom(Point, Integer)
fullName.vb : TinyLife.World.Map.GetRoom(Microsoft.Xna.Framework.Point, Integer)
name.vb : GetRoom(Point, Integer)
2023-03-30 18:07:55 +02:00
spec.csharp :
2023-10-11 16:05:32 +02:00
- uid : TinyLife.World.Map.GetRoom(Microsoft.Xna.Framework.Point,System.Int32)
2023-03-30 18:07:55 +02:00
name : GetRoom
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html#TinyLife_World_Map_GetRoom_Microsoft_Xna_Framework_Point_System_Int32_
2023-03-30 18:07:55 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : System.Int32
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
2023-03-30 18:07:55 +02:00
- name : )
spec.vb :
2023-10-11 16:05:32 +02:00
- uid : TinyLife.World.Map.GetRoom(Microsoft.Xna.Framework.Point,System.Int32)
2023-03-30 18:07:55 +02:00
name : GetRoom
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html#TinyLife_World_Map_GetRoom_Microsoft_Xna_Framework_Point_System_Int32_
2023-03-30 18:07:55 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : System.Int32
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
2023-03-30 18:07:55 +02:00
- name : )
2024-07-26 12:47:59 +02:00
- uid : TinyLife.World.Map.GetRoofs(MLEM.Maths.RectangleF)
commentId : M:TinyLife.World.Map.GetRoofs(MLEM.Maths.RectangleF)
2022-12-20 13:25:03 +01:00
isExternal : true
2024-07-26 12:47:59 +02:00
href : TinyLife.World.Map.html#TinyLife_World_Map_GetRoofs_MLEM_Maths_RectangleF_
2023-03-30 18:07:55 +02:00
name : GetRoofs(RectangleF)
nameWithType : Map.GetRoofs(RectangleF)
2024-07-26 12:47:59 +02:00
fullName : TinyLife.World.Map.GetRoofs(MLEM.Maths.RectangleF)
2023-03-30 18:07:55 +02:00
spec.csharp :
2024-07-26 12:47:59 +02:00
- uid : TinyLife.World.Map.GetRoofs(MLEM.Maths.RectangleF)
2023-03-30 18:07:55 +02:00
name : GetRoofs
2024-07-26 12:47:59 +02:00
href : TinyLife.World.Map.html#TinyLife_World_Map_GetRoofs_MLEM_Maths_RectangleF_
2023-03-30 18:07:55 +02:00
- name : (
2024-07-26 12:47:59 +02:00
- uid : MLEM.Maths.RectangleF
2023-03-30 18:07:55 +02:00
name : RectangleF
isExternal : true
- name : )
spec.vb :
2024-07-26 12:47:59 +02:00
- uid : TinyLife.World.Map.GetRoofs(MLEM.Maths.RectangleF)
2023-03-30 18:07:55 +02:00
name : GetRoofs
2024-07-26 12:47:59 +02:00
href : TinyLife.World.Map.html#TinyLife_World_Map_GetRoofs_MLEM_Maths_RectangleF_
2023-03-30 18:07:55 +02:00
- name : (
2024-07-26 12:47:59 +02:00
- uid : MLEM.Maths.RectangleF
2023-03-30 18:07:55 +02:00
name : RectangleF
isExternal : true
- name : )
2023-10-11 16:05:32 +02:00
- uid : TinyLife.World.Map.GetRoof(Microsoft.Xna.Framework.Point,System.Int32)
commentId : M:TinyLife.World.Map.GetRoof(Microsoft.Xna.Framework.Point,System.Int32)
2021-11-23 16:24:04 +01:00
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html#TinyLife_World_Map_GetRoof_Microsoft_Xna_Framework_Point_System_Int32_
2023-10-11 16:05:32 +02:00
name : GetRoof(Point, int)
nameWithType : Map.GetRoof(Point, int)
fullName : TinyLife.World.Map.GetRoof(Microsoft.Xna.Framework.Point, int)
nameWithType.vb : Map.GetRoof(Point, Integer)
fullName.vb : TinyLife.World.Map.GetRoof(Microsoft.Xna.Framework.Point, Integer)
name.vb : GetRoof(Point, Integer)
2023-03-30 18:07:55 +02:00
spec.csharp :
2023-10-11 16:05:32 +02:00
- uid : TinyLife.World.Map.GetRoof(Microsoft.Xna.Framework.Point,System.Int32)
2023-03-30 18:07:55 +02:00
name : GetRoof
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html#TinyLife_World_Map_GetRoof_Microsoft_Xna_Framework_Point_System_Int32_
2023-03-30 18:07:55 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : System.Int32
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
2023-03-30 18:07:55 +02:00
- name : )
spec.vb :
2023-10-11 16:05:32 +02:00
- uid : TinyLife.World.Map.GetRoof(Microsoft.Xna.Framework.Point,System.Int32)
2023-03-30 18:07:55 +02:00
name : GetRoof
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html#TinyLife_World_Map_GetRoof_Microsoft_Xna_Framework_Point_System_Int32_
2023-03-30 18:07:55 +02:00
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
2023-10-11 16:05:32 +02:00
- name : ','
- name : " "
- uid : System.Int32
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
2023-03-30 18:07:55 +02:00
- name : )
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.Point
commentId : T:Microsoft.Xna.Framework.Point
parent : Microsoft.Xna.Framework
2021-08-04 06:51:12 +02:00
isExternal : true
name : Point
nameWithType : Point
2022-09-05 14:19:42 +02:00
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
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
2021-08-04 06:51:12 +02:00
- uid : TinyLife.World.MapSection.Pos*
commentId : Overload:TinyLife.World.MapSection.Pos
2024-01-07 16:53:47 +01:00
href : TinyLife.World.MapSection.html#TinyLife_World_MapSection_Pos
2021-08-04 06:51:12 +02:00
name : Pos
nameWithType : MapSection.Pos
fullName : TinyLife.World.MapSection.Pos
2023-10-11 16:05:32 +02:00
- uid : TinyLife.World.MapSection.OtherFloorsWithTiles*
commentId : Overload:TinyLife.World.MapSection.OtherFloorsWithTiles
2024-01-07 16:53:47 +01:00
href : TinyLife.World.MapSection.html#TinyLife_World_MapSection_OtherFloorsWithTiles
2023-10-11 16:05:32 +02:00
name : OtherFloorsWithTiles
nameWithType : MapSection.OtherFloorsWithTiles
fullName : TinyLife.World.MapSection.OtherFloorsWithTiles
- uid : System.Collections.Generic.ICollection{System.Int32}
commentId : T:System.Collections.Generic.ICollection{System.Int32}
parent : System.Collections.Generic
definition : System.Collections.Generic.ICollection`1
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
name : ICollection<int>
nameWithType : ICollection<int>
fullName : System.Collections.Generic.ICollection<int>
nameWithType.vb : ICollection(Of Integer)
fullName.vb : System.Collections.Generic.ICollection(Of Integer)
name.vb : ICollection(Of Integer)
spec.csharp :
- uid : System.Collections.Generic.ICollection`1
name : ICollection
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name : <
- uid : System.Int32
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : '>'
spec.vb :
- uid : System.Collections.Generic.ICollection`1
name : ICollection
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name : (
- name : Of
- name : " "
- uid : System.Int32
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : )
- uid : System.Collections.Generic.ICollection`1
commentId : T:System.Collections.Generic.ICollection`1
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
name : ICollection<T>
nameWithType : ICollection<T>
fullName : System.Collections.Generic.ICollection<T>
nameWithType.vb : ICollection(Of T)
fullName.vb : System.Collections.Generic.ICollection(Of T)
name.vb : ICollection(Of T)
spec.csharp :
- uid : System.Collections.Generic.ICollection`1
name : ICollection
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.ICollection`1
name : ICollection
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name : (
- name : Of
- name : " "
- name : T
- name : )
- uid : System.Collections.Generic
commentId : N : System.Collections.Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
name : System.Collections.Generic
nameWithType : System.Collections.Generic
fullName : System.Collections.Generic
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.MapSection.#ctor*
commentId : Overload:TinyLife.World.MapSection.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.World.MapSection.html#TinyLife_World_MapSection__ctor_TinyLife_World_Map_Microsoft_Xna_Framework_Point_
2021-08-04 06:51:12 +02:00
name : MapSection
nameWithType : MapSection.MapSection
fullName : TinyLife.World.MapSection.MapSection
2023-03-30 18:07:55 +02:00
nameWithType.vb : MapSection.New
fullName.vb : TinyLife.World.MapSection.New
name.vb : New
2021-08-04 06:51:12 +02:00
- uid : TinyLife.World.Map
commentId : T:TinyLife.World.Map
parent : TinyLife.World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2021-08-04 06:51:12 +02:00
name : Map
nameWithType : Map
fullName : TinyLife.World.Map
2024-10-17 17:28:12 +02:00
- uid : TinyLife.World.MapSection.Validate(TinyLife.Utilities.AppliedMigrations)
commentId : M:TinyLife.World.MapSection.Validate(TinyLife.Utilities.AppliedMigrations)
href : TinyLife.World.MapSection.html#TinyLife_World_MapSection_Validate_TinyLife_Utilities_AppliedMigrations_
name : Validate(AppliedMigrations)
nameWithType : MapSection.Validate(AppliedMigrations)
fullName : TinyLife.World.MapSection.Validate(TinyLife.Utilities.AppliedMigrations)
2023-03-30 18:07:55 +02:00
spec.csharp :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.World.MapSection.Validate(TinyLife.Utilities.AppliedMigrations)
2023-03-30 18:07:55 +02:00
name : Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.World.MapSection.html#TinyLife_World_MapSection_Validate_TinyLife_Utilities_AppliedMigrations_
2023-03-30 18:07:55 +02:00
- name : (
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Utilities.AppliedMigrations
name : AppliedMigrations
href : TinyLife.Utilities.AppliedMigrations.html
2023-03-30 18:07:55 +02:00
- name : )
spec.vb :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.World.MapSection.Validate(TinyLife.Utilities.AppliedMigrations)
2023-03-30 18:07:55 +02:00
name : Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.World.MapSection.html#TinyLife_World_MapSection_Validate_TinyLife_Utilities_AppliedMigrations_
2023-03-30 18:07:55 +02:00
- name : (
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Utilities.AppliedMigrations
name : AppliedMigrations
href : TinyLife.Utilities.AppliedMigrations.html
2023-03-30 18:07:55 +02:00
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.World.MapSection.ValidateEarly*
commentId : Overload:TinyLife.World.MapSection.ValidateEarly
2024-01-07 16:53:47 +01:00
href : TinyLife.World.MapSection.html#TinyLife_World_MapSection_ValidateEarly_TinyLife_World_Map_
2022-01-01 17:06:03 +01:00
name : ValidateEarly
nameWithType : MapSection.ValidateEarly
fullName : TinyLife.World.MapSection.ValidateEarly
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.MapObject
commentId : T:TinyLife.Objects.MapObject
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.MapObject.html
2021-08-04 06:51:12 +02:00
name : MapObject
nameWithType : MapObject
fullName : TinyLife.Objects.MapObject
- uid : TinyLife.World.MapSection.Validate*
commentId : Overload:TinyLife.World.MapSection.Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.World.MapSection.html#TinyLife_World_MapSection_Validate_TinyLife_Utilities_AppliedMigrations_
2021-08-04 06:51:12 +02:00
name : Validate
nameWithType : MapSection.Validate
fullName : TinyLife.World.MapSection.Validate
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Utilities.AppliedMigrations
commentId : T:TinyLife.Utilities.AppliedMigrations
parent : TinyLife.Utilities
href : TinyLife.Utilities.AppliedMigrations.html
name : AppliedMigrations
nameWithType : AppliedMigrations
fullName : TinyLife.Utilities.AppliedMigrations
2023-07-20 14:27:20 +02:00
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-07-20 14:27:20 +02:00
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-07-20 14:27:20 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2023-07-20 14:27:20 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-07-20 14:27:20 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2023-10-11 16:05:32 +02:00
- uid : TinyLife.World.MapSection.GetAllTiles*
commentId : Overload:TinyLife.World.MapSection.GetAllTiles
2024-01-07 16:53:47 +01:00
href : TinyLife.World.MapSection.html#TinyLife_World_MapSection_GetAllTiles
2023-10-11 16:05:32 +02:00
name : GetAllTiles
nameWithType : MapSection.GetAllTiles
fullName : TinyLife.World.MapSection.GetAllTiles
- uid : System.Collections.Generic.IEnumerable{System.ValueTuple{Microsoft.Xna.Framework.Point,System.Int32,TinyLife.World.Tile}}
commentId : T:System.Collections.Generic.IEnumerable{System.ValueTuple{Microsoft.Xna.Framework.Point,System.Int32,TinyLife.World.Tile}}
parent : System.Collections.Generic
definition : System.Collections.Generic.IEnumerable`1
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name : IEnumerable<(Point Pos, int Floor, Tile Tile)>
nameWithType : IEnumerable<(Point Pos, int Floor, Tile Tile)>
fullName : System.Collections.Generic.IEnumerable<(Microsoft.Xna.Framework.Point Pos, int Floor, TinyLife.World.Tile Tile)>
nameWithType.vb : IEnumerable(Of (Pos As Point, Floor As Integer, Tile As Tile))
fullName.vb : System.Collections.Generic.IEnumerable(Of (Pos As Microsoft.Xna.Framework.Point, Floor As Integer, Tile As TinyLife.World.Tile))
name.vb : IEnumerable(Of (Pos As Point, Floor As Integer, Tile As Tile))
spec.csharp :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : <
- name : (
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : " "
- uid : System.ValueTuple{Microsoft.Xna.Framework.Point,System.Int32,TinyLife.World.Tile}.Pos
name : Pos
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.point,system.int32,tinylife.world.tile-.pos
- name : ','
- name : " "
- uid : System.Int32
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : " "
- uid : System.ValueTuple{Microsoft.Xna.Framework.Point,System.Int32,TinyLife.World.Tile}.Floor
name : Floor
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.point,system.int32,tinylife.world.tile-.floor
- name : ','
- name : " "
- uid : TinyLife.World.Tile
name : Tile
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Tile.html
2023-10-11 16:05:32 +02:00
- name : " "
- uid : System.ValueTuple{Microsoft.Xna.Framework.Point,System.Int32,TinyLife.World.Tile}.Tile
name : Tile
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.point,system.int32,tinylife.world.tile-.tile
- name : )
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
- name : (
- uid : System.ValueTuple{Microsoft.Xna.Framework.Point,System.Int32,TinyLife.World.Tile}.Pos
name : Pos
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.point,system.int32,tinylife.world.tile-.pos
- name : " "
- name : As
- name : " "
- uid : Microsoft.Xna.Framework.Point
name : Point
isExternal : true
- name : ','
- name : " "
- uid : System.ValueTuple{Microsoft.Xna.Framework.Point,System.Int32,TinyLife.World.Tile}.Floor
name : Floor
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.point,system.int32,tinylife.world.tile-.floor
- name : " "
- name : As
- name : " "
- uid : System.Int32
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : ','
- name : " "
- uid : System.ValueTuple{Microsoft.Xna.Framework.Point,System.Int32,TinyLife.World.Tile}.Tile
name : Tile
href : https://learn.microsoft.com/dotnet/api/system.valuetuple-microsoft.xna.framework.point,system.int32,tinylife.world.tile-.tile
- name : " "
- name : As
- name : " "
- uid : TinyLife.World.Tile
name : Tile
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Tile.html
2023-10-11 16:05:32 +02:00
- name : )
- name : )
- uid : System.Collections.Generic.IEnumerable`1
commentId : T:System.Collections.Generic.IEnumerable`1
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
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
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
- name : T
- name : )