diff --git a/GoRogue/Factory/BlueprintConfig.cs b/GoRogue/Factory/BlueprintConfig.cs index 97eaadcc..545e6545 100644 --- a/GoRogue/Factory/BlueprintConfig.cs +++ b/GoRogue/Factory/BlueprintConfig.cs @@ -1,4 +1,4 @@ -namespace SadConsole.Factory +namespace GoRogue.Factory { /// /// Base class for a settings object that contains parameters to pass to the Create function of a factory. diff --git a/GoRogue/Factory/Factory.cs b/GoRogue/Factory/Factory.cs index 638a116a..ff2dc6ed 100644 --- a/GoRogue/Factory/Factory.cs +++ b/GoRogue/Factory/Factory.cs @@ -2,7 +2,7 @@ using System.Collections; using System.Collections.Generic; -namespace SadConsole.Factory +namespace GoRogue.Factory { /// /// A factory that produces a type of object based on a blueprint and a set of configuration parameters. diff --git a/GoRogue/Factory/IBlueprint.cs b/GoRogue/Factory/IBlueprint.cs index 1019835b..3debb045 100644 --- a/GoRogue/Factory/IBlueprint.cs +++ b/GoRogue/Factory/IBlueprint.cs @@ -1,4 +1,4 @@ -namespace SadConsole.Factory +namespace GoRogue.Factory { /// /// Defines how to create a object. diff --git a/GoRogue/Factory/IFactoryObject.cs b/GoRogue/Factory/IFactoryObject.cs index 21de675d..78b207b0 100644 --- a/GoRogue/Factory/IFactoryObject.cs +++ b/GoRogue/Factory/IFactoryObject.cs @@ -1,4 +1,4 @@ -namespace SadConsole.Factory +namespace GoRogue.Factory { /// /// Interface that can optionally be implemented by objects created via a . The property diff --git a/GoRogue/Factory/SimpleBlueprint.cs b/GoRogue/Factory/SimpleBlueprint.cs index 60bb3ee8..f1492c61 100644 --- a/GoRogue/Factory/SimpleBlueprint.cs +++ b/GoRogue/Factory/SimpleBlueprint.cs @@ -1,4 +1,4 @@ -namespace SadConsole.Factory +namespace GoRogue.Factory { /// /// A simple that can be used when no configuration object is necessary to create the object. diff --git a/GoRogue/SpatialMap.cs b/GoRogue/SpatialMap.cs index 6909af25..d23c88b9 100644 --- a/GoRogue/SpatialMap.cs +++ b/GoRogue/SpatialMap.cs @@ -421,6 +421,7 @@ public string ToString(Func itemStringifier) /// See the for documentation on the practical purpose of spatial /// maps. /// + /// /// The objects stored in a SpatialMap must implement . This is used /// internally to keep track of the objects, since uints are easily (and efficiently) hashable. /// diff --git a/docs/api/GoRogue.AdjacencyRule.Types.html b/docs/api/GoRogue.AdjacencyRule.Types.html index b629bf8a..aaeded7a 100644 --- a/docs/api/GoRogue.AdjacencyRule.Types.html +++ b/docs/api/GoRogue.AdjacencyRule.Types.html @@ -123,10 +123,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.AdjacencyRule.html b/docs/api/GoRogue.AdjacencyRule.html index 35edb474..c6f576e5 100644 --- a/docs/api/GoRogue.AdjacencyRule.html +++ b/docs/api/GoRogue.AdjacencyRule.html @@ -113,10 +113,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

CARDINALS

Represents method of determining adjacency where neighbors are considered adjacent if @@ -145,10 +145,10 @@

Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DIAGONALS

Represents method of determining adjacency where neighbors are considered adjacent only @@ -177,10 +177,10 @@

Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EIGHT_WAY

Represents method of determining adjacency where all 8 possible neighbors are considered @@ -209,10 +209,10 @@

Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

Enum value representing the method of determining adjacency -- useful for using @@ -242,10 +242,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

DirectionsOfNeighbors()

@@ -275,10 +275,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

DirectionsOfNeighborsClockwise(Direction)

@@ -329,10 +329,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

DirectionsOfNeighborsCounterClockwise(Direction)

@@ -383,10 +383,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(AdjacencyRule)

@@ -432,10 +432,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Object)

@@ -483,10 +483,10 @@
Overrides
System.Object.Equals(System.Object)
| - Improve this Doc + Improve this Doc - View Source + View Source

GetHashCode()

@@ -516,10 +516,10 @@
Overrides
System.Object.GetHashCode()
| - Improve this Doc + Improve this Doc - View Source + View Source

Neighbors(Coord)

@@ -567,10 +567,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Neighbors(Int32, Int32)

@@ -624,10 +624,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NeighborsClockwise(Coord, Direction)

@@ -684,10 +684,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NeighborsClockwise(Int32, Int32, Direction)

@@ -750,10 +750,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NeighborsCounterClockwise(Coord, Direction)

@@ -810,10 +810,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NeighborsCounterClockwise(Int32, Int32, Direction)

@@ -876,10 +876,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToAdjacencyRule(AdjacencyRule.Types)

@@ -926,10 +926,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -962,10 +962,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(AdjacencyRule, AdjacencyRule)

@@ -1016,10 +1016,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(AdjacencyRule, AdjacencyRule)

@@ -1084,10 +1084,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.AdvancedLayeredSpatialMap-1.html b/docs/api/GoRogue.AdvancedLayeredSpatialMap-1.html index 0c9bd930..4d3f939b 100644 --- a/docs/api/GoRogue.AdvancedLayeredSpatialMap-1.html +++ b/docs/api/GoRogue.AdvancedLayeredSpatialMap-1.html @@ -146,10 +146,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

AdvancedLayeredSpatialMap(IEqualityComparer<T>, Int32, Int32, UInt32)

@@ -203,10 +203,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Count

@@ -234,10 +234,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Items

@@ -265,10 +265,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LayerMasker

@@ -296,10 +296,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Layers

@@ -328,10 +328,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NumberOfLayers

@@ -359,10 +359,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Positions

@@ -391,10 +391,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartingLayer

@@ -424,10 +424,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Add(T, Coord)

@@ -480,10 +480,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Add(T, Int32, Int32)

@@ -543,10 +543,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

AsReadOnly()

@@ -575,10 +575,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Clear()

@@ -591,10 +591,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(T)

@@ -639,10 +639,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Coord, UInt32)

@@ -692,10 +692,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Int32, Int32, UInt32)

@@ -750,10 +750,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetEnumerator()

@@ -783,10 +783,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetItems(Coord, UInt32)

@@ -836,10 +836,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetItems(Int32, Int32, UInt32)

@@ -894,10 +894,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetLayer(Int32)

@@ -944,10 +944,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetLayers(UInt32)

@@ -995,10 +995,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetPosition(T)

@@ -1043,10 +1043,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(T, Coord)

@@ -1102,10 +1102,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(T, Int32, Int32)

@@ -1167,10 +1167,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(Coord, Coord, UInt32)

@@ -1230,10 +1230,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(Int32, Int32, Int32, Int32, UInt32)

@@ -1305,10 +1305,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(T)

@@ -1353,10 +1353,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Coord, UInt32)

@@ -1411,10 +1411,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Int32, Int32, UInt32)

@@ -1475,10 +1475,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -1509,10 +1509,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Func<T, String>)

@@ -1562,10 +1562,10 @@

Events

| - Improve this Doc + Improve this Doc - View Source + View Source

ItemAdded

See ItemAdded.

@@ -1592,10 +1592,10 @@
Event Type
| - Improve this Doc + Improve this Doc - View Source + View Source

ItemMoved

See ItemMoved.

@@ -1622,10 +1622,10 @@
Event Type
| - Improve this Doc + Improve this Doc - View Source + View Source

ItemRemoved

See ItemRemoved.

@@ -1654,10 +1654,10 @@

Explicit Interface Implementations

| - Improve this Doc + Improve this Doc - View Source + View Source

IReadOnlySpatialMap<T>.AsReadOnly()

@@ -1685,10 +1685,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

IReadOnlySpatialMap<T>.Contains(Coord)

@@ -1733,10 +1733,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

IReadOnlySpatialMap<T>.Contains(Int32, Int32)

@@ -1786,10 +1786,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

IReadOnlySpatialMap<T>.GetItems(Coord)

@@ -1834,10 +1834,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

IReadOnlySpatialMap<T>.GetItems(Int32, Int32)

@@ -1887,10 +1887,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ISpatialMap<T>.Move(Coord, Coord)

@@ -1943,10 +1943,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ISpatialMap<T>.Move(Int32, Int32, Int32, Int32)

@@ -2011,10 +2011,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ISpatialMap<T>.Remove(Coord)

@@ -2059,10 +2059,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ISpatialMap<T>.Remove(Int32, Int32)

@@ -2112,10 +2112,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

IEnumerable.GetEnumerator()

@@ -2173,10 +2173,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.AdvancedMultiSpatialMap-1.html b/docs/api/GoRogue.AdvancedMultiSpatialMap-1.html index be01a704..6b4bf920 100644 --- a/docs/api/GoRogue.AdvancedMultiSpatialMap-1.html +++ b/docs/api/GoRogue.AdvancedMultiSpatialMap-1.html @@ -145,10 +145,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

AdvancedMultiSpatialMap(IEqualityComparer<T>, Int32)

@@ -190,10 +190,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Count

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Items

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Positions

@@ -285,10 +285,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Add(T, Coord)

@@ -343,10 +343,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Add(T, Int32, Int32)

@@ -407,10 +407,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

AsReadOnly()

@@ -438,10 +438,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Clear()

@@ -454,10 +454,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(T)

@@ -502,10 +502,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Coord)

@@ -550,10 +550,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Int32, Int32)

@@ -603,10 +603,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetEnumerator()

@@ -636,10 +636,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetItems(Coord)

@@ -684,10 +684,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetItems(Int32, Int32)

@@ -737,10 +737,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetPosition(T)

@@ -785,10 +785,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(T, Coord)

@@ -842,10 +842,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(T, Int32, Int32)

@@ -906,10 +906,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(Coord, Coord)

@@ -964,10 +964,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(Int32, Int32, Int32, Int32)

@@ -1034,10 +1034,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(T)

@@ -1085,10 +1085,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Coord)

@@ -1136,10 +1136,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Int32, Int32)

@@ -1193,10 +1193,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -1227,10 +1227,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Func<T, String>)

@@ -1280,10 +1280,10 @@

Events

| - Improve this Doc + Improve this Doc - View Source + View Source

ItemAdded

See ItemAdded.

@@ -1310,10 +1310,10 @@
Event Type
| - Improve this Doc + Improve this Doc - View Source + View Source

ItemMoved

See ItemMoved.

@@ -1340,10 +1340,10 @@
Event Type
| - Improve this Doc + Improve this Doc - View Source + View Source

ItemRemoved

See ItemRemoved.

@@ -1372,10 +1372,10 @@

Explicit Interface Implementations

| - Improve this Doc + Improve this Doc - View Source + View Source

IEnumerable.GetEnumerator()

@@ -1430,10 +1430,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.AdvancedSpatialMap-1.html b/docs/api/GoRogue.AdvancedSpatialMap-1.html index 0b63128a..d3cfde92 100644 --- a/docs/api/GoRogue.AdvancedSpatialMap-1.html +++ b/docs/api/GoRogue.AdvancedSpatialMap-1.html @@ -145,10 +145,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

AdvancedSpatialMap(IEqualityComparer<T>, Int32)

@@ -190,10 +190,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Count

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Items

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Positions

@@ -285,10 +285,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Add(T, Coord)

@@ -343,10 +343,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Add(T, Int32, Int32)

@@ -407,10 +407,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

AsReadOnly()

@@ -438,10 +438,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Clear()

@@ -454,10 +454,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(T)

@@ -502,10 +502,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Coord)

@@ -550,10 +550,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Int32, Int32)

@@ -603,10 +603,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetEnumerator()

@@ -636,10 +636,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetItem(Coord)

@@ -690,10 +690,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

GetItem(Int32, Int32)

@@ -750,10 +750,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

GetItems(Coord)

@@ -808,10 +808,10 @@
Remarks | - Improve this Doc + Improve this Doc - View Source + View Source

GetItems(Int32, Int32)

@@ -872,10 +872,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

GetPosition(T)

@@ -920,10 +920,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(T, Coord)

@@ -978,10 +978,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(T, Int32, Int32)

@@ -1042,10 +1042,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(Coord, Coord)

@@ -1105,10 +1105,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(Int32, Int32, Int32, Int32)

@@ -1180,10 +1180,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(T)

@@ -1231,10 +1231,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Coord)

@@ -1287,10 +1287,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Int32, Int32)

@@ -1349,10 +1349,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -1383,10 +1383,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Func<T, String>)

@@ -1436,10 +1436,10 @@

Events

| - Improve this Doc + Improve this Doc - View Source + View Source

ItemAdded

See ItemAdded.

@@ -1466,10 +1466,10 @@
Event Type
| - Improve this Doc + Improve this Doc - View Source + View Source

ItemMoved

See ItemMoved.

@@ -1496,10 +1496,10 @@
Event Type
| - Improve this Doc + Improve this Doc - View Source + View Source

ItemRemoved

See ItemRemoved.

@@ -1528,10 +1528,10 @@

Explicit Interface Implementations

| - Improve this Doc + Improve this Doc - View Source + View Source

IEnumerable.GetEnumerator()

@@ -1586,10 +1586,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.BoundedRectangle.html b/docs/api/GoRogue.BoundedRectangle.html index b7241192..ff5c6ebc 100644 --- a/docs/api/GoRogue.BoundedRectangle.html +++ b/docs/api/GoRogue.BoundedRectangle.html @@ -116,10 +116,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

BoundedRectangle(Rectangle, Rectangle)

@@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Area

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

BoundingBox

@@ -226,10 +226,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(BoundedRectangle)

@@ -275,10 +275,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Object)

@@ -326,10 +326,10 @@
Overrides
System.Object.Equals(System.Object)
| - Improve this Doc + Improve this Doc - View Source + View Source

GetHashCode()

@@ -361,10 +361,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(BoundedRectangle, BoundedRectangle)

@@ -415,10 +415,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(BoundedRectangle, BoundedRectangle)

@@ -483,10 +483,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.ComponentContainer.html b/docs/api/GoRogue.ComponentContainer.html index 2072b2b4..f258afe0 100644 --- a/docs/api/GoRogue.ComponentContainer.html +++ b/docs/api/GoRogue.ComponentContainer.html @@ -142,10 +142,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ComponentContainer()

@@ -160,10 +160,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AddComponent(Object)

@@ -194,10 +194,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetComponent<T>()

@@ -244,10 +244,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetComponents<T>()

@@ -292,10 +292,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

HasComponent(Type)

@@ -343,10 +343,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

HasComponent<T>()

@@ -391,10 +391,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

HasComponents(Type[])

@@ -442,10 +442,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

RemoveComponent(Object)

@@ -476,10 +476,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RemoveComponents(Object[])

@@ -524,10 +524,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Coord.html b/docs/api/GoRogue.Coord.html index 0d4bb11f..3238b6dc 100644 --- a/docs/api/GoRogue.Coord.html +++ b/docs/api/GoRogue.Coord.html @@ -123,10 +123,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

Coord(Int32, Int32)

@@ -165,10 +165,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

NONE

Coord value that represents None or no position (since Coord is not a nullable type). @@ -201,10 +201,10 @@

Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

X

X-value of the coordinate.

@@ -231,10 +231,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Y

Y-value of the coordinate.

@@ -263,10 +263,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

BearingOfLine(Coord)

@@ -315,10 +315,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

BearingOfLine(Coord, Coord)

@@ -371,10 +371,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

BearingOfLine(Int32, Int32)

@@ -428,10 +428,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

BearingOfLine(Int32, Int32, Int32, Int32)

@@ -497,10 +497,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Deconstruct(out Int32, out Int32)

@@ -535,10 +535,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Coord)

@@ -585,10 +585,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Object)

@@ -637,10 +637,10 @@
Overrides
System.ValueType.Equals(System.Object)
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals((Int32 x, Int32 y))

@@ -687,10 +687,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

EuclideanDistanceMagnitude(Coord)

@@ -744,10 +744,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

EuclideanDistanceMagnitude(Coord, Coord)

@@ -804,10 +804,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

EuclideanDistanceMagnitude(Int32, Int32)

@@ -864,10 +864,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

EuclideanDistanceMagnitude(Int32, Int32, Int32, Int32)

@@ -938,10 +938,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetHashCode()

@@ -980,10 +980,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

Midpoint(Coord, Coord)

@@ -1036,10 +1036,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Midpoint(Int32, Int32, Int32, Int32)

@@ -1104,10 +1104,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToCoord(Int32, Int32)

@@ -1160,10 +1160,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToIndex(Int32)

@@ -1211,10 +1211,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToIndex(Int32, Int32, Int32)

@@ -1273,10 +1273,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -1307,10 +1307,10 @@
Overrides
System.ValueType.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToXValue(Int32, Int32)

@@ -1363,10 +1363,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToYValue(Int32, Int32)

@@ -1419,10 +1419,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Translate(Coord)

@@ -1471,10 +1471,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Translate(Int32, Int32)

@@ -1529,10 +1529,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Coord, Coord)

@@ -1583,10 +1583,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Coord, Direction)

@@ -1637,10 +1637,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Coord, Point)

@@ -1691,10 +1691,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Coord, Point)

@@ -1745,10 +1745,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Coord, Size)

@@ -1799,10 +1799,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Coord, Int32)

@@ -1853,10 +1853,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Coord, (Int32 x, Int32 y))

@@ -1907,10 +1907,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Point, Coord)

@@ -1961,10 +1961,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Point, Coord)

@@ -2015,10 +2015,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(PointF, Coord)

@@ -2069,10 +2069,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Size, Coord)

@@ -2123,10 +2123,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(SizeF, Coord)

@@ -2177,10 +2177,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition((Int32 x, Int32 y), Coord)

@@ -2231,10 +2231,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Division(Coord, Double)

@@ -2286,10 +2286,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Division(Coord, Int32)

@@ -2341,10 +2341,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Coord, Coord)

@@ -2395,10 +2395,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Coord, Point)

@@ -2449,10 +2449,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Coord, Point)

@@ -2503,10 +2503,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Coord, PointF)

@@ -2557,10 +2557,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Coord, Size)

@@ -2611,10 +2611,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Coord, SizeF)

@@ -2665,10 +2665,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Coord, (Int32 x, Int32 y))

@@ -2719,10 +2719,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Point, Coord)

@@ -2773,10 +2773,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Point, Coord)

@@ -2827,10 +2827,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(PointF, Coord)

@@ -2881,10 +2881,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Size, Coord)

@@ -2935,10 +2935,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(SizeF, Coord)

@@ -2989,10 +2989,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality((Int32 x, Int32 y), Coord)

@@ -3043,10 +3043,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Coord to Point)

@@ -3091,10 +3091,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Coord to Point)

@@ -3139,10 +3139,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Coord to PointF)

@@ -3187,10 +3187,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Coord to Size)

@@ -3235,10 +3235,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Coord to SizeF)

@@ -3283,10 +3283,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Coord to (Int32 x, Int32 y))

@@ -3331,10 +3331,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Point to Coord)

@@ -3379,10 +3379,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Point to Coord)

@@ -3427,10 +3427,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Size to Coord)

@@ -3475,10 +3475,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit((Int32 x, Int32 y) to Coord)

@@ -3523,10 +3523,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Coord, Coord)

@@ -3577,10 +3577,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Coord, Point)

@@ -3631,10 +3631,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Coord, Point)

@@ -3685,10 +3685,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Coord, PointF)

@@ -3739,10 +3739,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Coord, Size)

@@ -3793,10 +3793,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Coord, SizeF)

@@ -3847,10 +3847,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Coord, (Int32 x, Int32 y))

@@ -3901,10 +3901,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Point, Coord)

@@ -3955,10 +3955,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Point, Coord)

@@ -4009,10 +4009,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(PointF, Coord)

@@ -4063,10 +4063,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Size, Coord)

@@ -4117,10 +4117,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(SizeF, Coord)

@@ -4171,10 +4171,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality((Int32 x, Int32 y), Coord)

@@ -4225,10 +4225,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Multiply(Coord, Double)

@@ -4281,10 +4281,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Multiply(Coord, Int32)

@@ -4335,10 +4335,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction(Coord, Coord)

@@ -4389,10 +4389,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction(Coord, Point)

@@ -4443,10 +4443,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction(Coord, Point)

@@ -4497,10 +4497,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction(Coord, Size)

@@ -4551,10 +4551,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction(Coord, Int32)

@@ -4605,10 +4605,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction(Coord, (Int32 x, Int32 y))

@@ -4659,10 +4659,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction(Point, Coord)

@@ -4713,10 +4713,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction(Point, Coord)

@@ -4767,10 +4767,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction(PointF, Coord)

@@ -4821,10 +4821,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction(Size, Coord)

@@ -4875,10 +4875,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction(SizeF, Coord)

@@ -4929,10 +4929,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction((Int32 x, Int32 y), Coord)

@@ -5000,10 +5000,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Dice.html b/docs/api/GoRogue.DiceNotation.Dice.html index 6d568749..9d38de60 100644 --- a/docs/api/GoRogue.DiceNotation.Dice.html +++ b/docs/api/GoRogue.DiceNotation.Dice.html @@ -116,10 +116,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DiceParser

The parser that will be used to parse dice expressions given to the Parse(String) and Roll(String, IGenerator) @@ -149,10 +149,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Parse(String)

@@ -207,10 +207,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

Roll(String, IGenerator)

@@ -277,10 +277,10 @@
diff --git a/docs/api/GoRogue.DiceNotation.DiceExpression.html b/docs/api/GoRogue.DiceNotation.DiceExpression.html index 19668d61..0790943b 100644 --- a/docs/api/GoRogue.DiceNotation.DiceExpression.html +++ b/docs/api/GoRogue.DiceNotation.DiceExpression.html @@ -116,10 +116,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

DiceExpression(ITerm)

@@ -152,10 +152,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

MaxRoll()

@@ -184,10 +184,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

MinRoll()

@@ -216,10 +216,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Roll(IGenerator)

@@ -266,10 +266,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -314,10 +314,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Exceptions.ImpossibleDieException.html b/docs/api/GoRogue.DiceNotation.Exceptions.ImpossibleDieException.html index 1e6d92ec..e96ddccf 100644 --- a/docs/api/GoRogue.DiceNotation.Exceptions.ImpossibleDieException.html +++ b/docs/api/GoRogue.DiceNotation.Exceptions.ImpossibleDieException.html @@ -153,10 +153,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ImpossibleDieException()

@@ -169,10 +169,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

ImpossibleDieException(String)

@@ -203,10 +203,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ImpossibleDieException(String, Exception)

@@ -259,10 +259,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Exceptions.InvalidChooseException.html b/docs/api/GoRogue.DiceNotation.Exceptions.InvalidChooseException.html index bde6f00c..9a0ebfb6 100644 --- a/docs/api/GoRogue.DiceNotation.Exceptions.InvalidChooseException.html +++ b/docs/api/GoRogue.DiceNotation.Exceptions.InvalidChooseException.html @@ -154,10 +154,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidChooseException()

@@ -170,10 +170,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidChooseException(String)

@@ -204,10 +204,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidChooseException(String, Exception)

@@ -261,10 +261,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Exceptions.InvalidMultiplicityException.html b/docs/api/GoRogue.DiceNotation.Exceptions.InvalidMultiplicityException.html index 39466df9..06dabafc 100644 --- a/docs/api/GoRogue.DiceNotation.Exceptions.InvalidMultiplicityException.html +++ b/docs/api/GoRogue.DiceNotation.Exceptions.InvalidMultiplicityException.html @@ -153,10 +153,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidMultiplicityException()

@@ -169,10 +169,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidMultiplicityException(String)

@@ -203,10 +203,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidMultiplicityException(String, Exception)

@@ -260,10 +260,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Exceptions.InvalidSyntaxException.html b/docs/api/GoRogue.DiceNotation.Exceptions.InvalidSyntaxException.html index 1847a6aa..fdfc8567 100644 --- a/docs/api/GoRogue.DiceNotation.Exceptions.InvalidSyntaxException.html +++ b/docs/api/GoRogue.DiceNotation.Exceptions.InvalidSyntaxException.html @@ -153,10 +153,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidSyntaxException()

@@ -169,10 +169,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidSyntaxException(String)

@@ -203,10 +203,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidSyntaxException(String, Exception)

@@ -260,10 +260,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.IDiceExpression.html b/docs/api/GoRogue.DiceNotation.IDiceExpression.html index d52476e3..32edf6cc 100644 --- a/docs/api/GoRogue.DiceNotation.IDiceExpression.html +++ b/docs/api/GoRogue.DiceNotation.IDiceExpression.html @@ -86,10 +86,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

MaxRoll()

@@ -121,10 +121,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

MinRoll()

@@ -156,10 +156,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

Roll(IGenerator)

@@ -216,10 +216,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.IParser.html b/docs/api/GoRogue.DiceNotation.IParser.html index bd9d5371..3e731ad7 100644 --- a/docs/api/GoRogue.DiceNotation.IParser.html +++ b/docs/api/GoRogue.DiceNotation.IParser.html @@ -88,10 +88,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Parse(String)

@@ -148,10 +148,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Parser.html b/docs/api/GoRogue.DiceNotation.Parser.html index 25215f93..307b74ee 100644 --- a/docs/api/GoRogue.DiceNotation.Parser.html +++ b/docs/api/GoRogue.DiceNotation.Parser.html @@ -119,10 +119,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Parse(String)

@@ -187,10 +187,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Terms.AddTerm.html b/docs/api/GoRogue.DiceNotation.Terms.AddTerm.html index ebea81ba..8aa65a02 100644 --- a/docs/api/GoRogue.DiceNotation.Terms.AddTerm.html +++ b/docs/api/GoRogue.DiceNotation.Terms.AddTerm.html @@ -116,10 +116,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

AddTerm(ITerm, ITerm)

@@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Term1

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Term2

@@ -222,10 +222,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GetResult(IGenerator)

@@ -272,10 +272,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -320,10 +320,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Terms.ConstantTerm.html b/docs/api/GoRogue.DiceNotation.Terms.ConstantTerm.html index 1b26b926..5b2b2299 100644 --- a/docs/api/GoRogue.DiceNotation.Terms.ConstantTerm.html +++ b/docs/api/GoRogue.DiceNotation.Terms.ConstantTerm.html @@ -116,10 +116,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ConstantTerm(Int32)

@@ -152,10 +152,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GetResult(IGenerator)

@@ -202,10 +202,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -250,10 +250,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Terms.DiceTerm.html b/docs/api/GoRogue.DiceNotation.Terms.DiceTerm.html index b8fa9ec1..3bff7e44 100644 --- a/docs/api/GoRogue.DiceNotation.Terms.DiceTerm.html +++ b/docs/api/GoRogue.DiceNotation.Terms.DiceTerm.html @@ -116,10 +116,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

DiceTerm(ITerm, ITerm)

@@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DiceResults

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastMultiplicity

@@ -222,10 +222,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastSidedness

@@ -253,10 +253,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Multiplicity

@@ -284,10 +284,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Sides

@@ -317,10 +317,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GetResult(IGenerator)

@@ -367,10 +367,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -415,10 +415,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Terms.DivideTerm.html b/docs/api/GoRogue.DiceNotation.Terms.DivideTerm.html index 82becc40..d1cf7450 100644 --- a/docs/api/GoRogue.DiceNotation.Terms.DivideTerm.html +++ b/docs/api/GoRogue.DiceNotation.Terms.DivideTerm.html @@ -116,10 +116,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

DivideTerm(ITerm, ITerm)

@@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Term1

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Term2

@@ -222,10 +222,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GetResult(IGenerator)

@@ -272,10 +272,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -320,10 +320,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Terms.ITerm.html b/docs/api/GoRogue.DiceNotation.Terms.ITerm.html index 9d18ff52..588d91fb 100644 --- a/docs/api/GoRogue.DiceNotation.Terms.ITerm.html +++ b/docs/api/GoRogue.DiceNotation.Terms.ITerm.html @@ -86,10 +86,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GetResult(IGenerator)

@@ -146,10 +146,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Terms.KeepTerm.html b/docs/api/GoRogue.DiceNotation.Terms.KeepTerm.html index 52d40726..6fde20b1 100644 --- a/docs/api/GoRogue.DiceNotation.Terms.KeepTerm.html +++ b/docs/api/GoRogue.DiceNotation.Terms.KeepTerm.html @@ -116,10 +116,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

KeepTerm(ITerm, DiceTerm)

@@ -159,10 +159,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GetResult(IGenerator)

@@ -211,10 +211,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -259,10 +259,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Terms.MultiplyTerm.html b/docs/api/GoRogue.DiceNotation.Terms.MultiplyTerm.html index 35b34f8a..072300a9 100644 --- a/docs/api/GoRogue.DiceNotation.Terms.MultiplyTerm.html +++ b/docs/api/GoRogue.DiceNotation.Terms.MultiplyTerm.html @@ -116,10 +116,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

MultiplyTerm(ITerm, ITerm)

@@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Term1

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Term2

@@ -222,10 +222,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GetResult(IGenerator)

@@ -272,10 +272,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -320,10 +320,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DiceNotation.Terms.SubtractTerm.html b/docs/api/GoRogue.DiceNotation.Terms.SubtractTerm.html index b703576d..917d9884 100644 --- a/docs/api/GoRogue.DiceNotation.Terms.SubtractTerm.html +++ b/docs/api/GoRogue.DiceNotation.Terms.SubtractTerm.html @@ -116,10 +116,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

SubtractTerm(ITerm, ITerm)

@@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Term1

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Term2

@@ -222,10 +222,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GetResult(IGenerator)

@@ -272,10 +272,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -320,10 +320,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Direction.Types.html b/docs/api/GoRogue.Direction.Types.html index 205f4e59..8ba42a86 100644 --- a/docs/api/GoRogue.Direction.Types.html +++ b/docs/api/GoRogue.Direction.Types.html @@ -153,10 +153,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Direction.html b/docs/api/GoRogue.Direction.html index ddde3c40..397b0d1f 100644 --- a/docs/api/GoRogue.Direction.html +++ b/docs/api/GoRogue.Direction.html @@ -126,10 +126,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DeltaX

Change in x-value represented by this direction.

@@ -156,10 +156,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DeltaY

Change in y-value represented by this direction.

@@ -186,10 +186,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

Enum type corresponding to direction being represented.

@@ -218,10 +218,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DOWN

@@ -249,10 +249,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DOWN_LEFT

@@ -280,10 +280,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DOWN_RIGHT

@@ -311,10 +311,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LEFT

@@ -342,10 +342,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NONE

@@ -373,10 +373,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RIGHT

@@ -404,10 +404,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UP

@@ -435,10 +435,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UP_LEFT

@@ -466,10 +466,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UP_RIGHT

@@ -497,10 +497,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

YIncreasesUpward

@@ -533,10 +533,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Direction)

@@ -582,10 +582,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Object)

@@ -633,10 +633,10 @@
Overrides
System.Object.Equals(System.Object)
| - Improve this Doc + Improve this Doc - View Source + View Source

GetCardinalDirection(Coord)

@@ -686,10 +686,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetCardinalDirection(Coord, Coord)

@@ -744,10 +744,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetCardinalDirection(Int32, Int32)

@@ -802,10 +802,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetCardinalDirection(Int32, Int32, Int32, Int32)

@@ -872,10 +872,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetDirection(Coord)

@@ -924,10 +924,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetDirection(Coord, Coord)

@@ -981,10 +981,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetDirection(Int32, Int32)

@@ -1038,10 +1038,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetDirection(Int32, Int32, Int32, Int32)

@@ -1107,10 +1107,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetHashCode()

@@ -1140,10 +1140,10 @@
Overrides
System.Object.GetHashCode()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToDirection(Direction.Types)

@@ -1190,10 +1190,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -1226,10 +1226,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Direction, Int32)

@@ -1280,10 +1280,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Point, Direction)

@@ -1334,10 +1334,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(Point, Direction)

@@ -1388,10 +1388,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Addition((Int32 x, Int32 y), Direction)

@@ -1442,10 +1442,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Decrement(Direction)

@@ -1491,10 +1491,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Direction, Direction)

@@ -1545,10 +1545,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Increment(Direction)

@@ -1594,10 +1594,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Direction, Direction)

@@ -1648,10 +1648,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Subtraction(Direction, Int32)

@@ -1716,10 +1716,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.DisjointSet.html b/docs/api/GoRogue.DisjointSet.html index c33eb355..83c07e59 100644 --- a/docs/api/GoRogue.DisjointSet.html +++ b/docs/api/GoRogue.DisjointSet.html @@ -123,10 +123,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

DisjointSet(Int32)

@@ -159,10 +159,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Count

@@ -192,10 +192,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AsReadOnly()

@@ -224,10 +224,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Find(Int32)

@@ -275,10 +275,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

InSameSet(Int32, Int32)

@@ -329,10 +329,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

MakeUnion(Int32, Int32)

@@ -371,10 +371,10 @@
Remark
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -420,10 +420,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Distance.Types.html b/docs/api/GoRogue.Distance.Types.html index 6c37b5b5..3779c9e2 100644 --- a/docs/api/GoRogue.Distance.Types.html +++ b/docs/api/GoRogue.Distance.Types.html @@ -123,10 +123,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Distance.html b/docs/api/GoRogue.Distance.html index 4b2a8b49..9931a9c8 100644 --- a/docs/api/GoRogue.Distance.html +++ b/docs/api/GoRogue.Distance.html @@ -119,10 +119,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

CHEBYSHEV

Represents chebyshev distance (equivalent to 8-way movement with no extra cost for diagonals).

@@ -150,10 +150,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EUCLIDEAN

Represents euclidean distance (equivalent to 8-way movement with ~1.41 movement cost for diagonals).

@@ -181,10 +181,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MANHATTAN

Represents manhattan distance (equivalent to 4-way, cardinal-only movement).

@@ -212,10 +212,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

Enum value representing the method of calcuating distance -- useful for using @@ -245,10 +245,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Coord)

@@ -296,10 +296,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Coord, Coord)

@@ -352,10 +352,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Double, Double)

@@ -408,10 +408,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Double, Double, Double)

@@ -470,10 +470,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Double, Double, Double, Double)

@@ -538,10 +538,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Double, Double, Double, Double, Double, Double)

@@ -618,10 +618,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Int32, Int32)

@@ -674,10 +674,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Int32, Int32, Int32)

@@ -736,10 +736,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Int32, Int32, Int32, Int32)

@@ -804,10 +804,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Int32, Int32, Int32, Int32, Int32, Int32)

@@ -884,10 +884,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Distance)

@@ -933,10 +933,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Object)

@@ -984,10 +984,10 @@
Overrides
System.Object.Equals(System.Object)
| - Improve this Doc + Improve this Doc - View Source + View Source

GetHashCode()

@@ -1017,10 +1017,10 @@
Overrides
System.Object.GetHashCode()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToDistance(Distance.Types)

@@ -1067,10 +1067,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -1103,10 +1103,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Distance, Distance)

@@ -1157,10 +1157,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Explicit(Distance to Radius)

@@ -1209,10 +1209,10 @@
R
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Distance to AdjacencyRule)

@@ -1261,10 +1261,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Distance, Distance)

@@ -1329,10 +1329,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Effect-1.html b/docs/api/GoRogue.Effect-1.html index 75367de4..6c3c2491 100644 --- a/docs/api/GoRogue.Effect-1.html +++ b/docs/api/GoRogue.Effect-1.html @@ -154,10 +154,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

Effect(String, Int32)

@@ -196,10 +196,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

INFINITE

The value one should specify as the effect duration for an infinite effect, eg. an effect @@ -228,10 +228,10 @@

Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

INSTANT

The value one should specify as the effect duaration for an instantaneous effect, eg. an @@ -262,10 +262,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Duration

@@ -298,10 +298,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -331,10 +331,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

OnTrigger(TriggerArgs)

@@ -366,10 +366,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -400,10 +400,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

Trigger(TriggerArgs)

@@ -441,10 +441,10 @@

Events

| - Improve this Doc + Improve this Doc - View Source + View Source

Expired

Event that fires as soon as the effect is about to expire. Fires after the @@ -483,10 +483,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.EffectArgs.html b/docs/api/GoRogue.EffectArgs.html index 2b0523aa..2df4b583 100644 --- a/docs/api/GoRogue.EffectArgs.html +++ b/docs/api/GoRogue.EffectArgs.html @@ -120,10 +120,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

EffectArgs()

@@ -138,10 +138,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

CancelTrigger

Whether or not the EffectTrigger<TriggerArgs> should stop calling all subsequent effect's @@ -179,10 +179,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.EffectTrigger-1.html b/docs/api/GoRogue.EffectTrigger-1.html index a5472897..41ee7b55 100644 --- a/docs/api/GoRogue.EffectTrigger-1.html +++ b/docs/api/GoRogue.EffectTrigger-1.html @@ -156,10 +156,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

EffectTrigger()

@@ -174,10 +174,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Effects

@@ -207,10 +207,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Add(Effect<TriggerArgs>)

@@ -242,10 +242,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Effect<TriggerArgs>)

@@ -276,10 +276,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -310,10 +310,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

TriggerEffects(TriggerArgs)

@@ -365,10 +365,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.FOV.html b/docs/api/GoRogue.FOV.html index f8e1448c..cee31a20 100644 --- a/docs/api/GoRogue.FOV.html +++ b/docs/api/GoRogue.FOV.html @@ -137,10 +137,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

FOV(IMapView<Boolean>)

@@ -175,10 +175,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

BooleanFOV

@@ -207,10 +207,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentFOV

@@ -238,10 +238,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -269,10 +269,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -319,10 +319,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -369,10 +369,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -425,10 +425,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NewlySeen

@@ -457,10 +457,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NewlyUnseen

@@ -489,10 +489,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -522,10 +522,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AsReadOnly()

@@ -554,10 +554,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Coord, Double)

@@ -597,10 +597,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Coord, Double, Distance)

@@ -644,10 +644,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Coord, Double, Distance, Double, Double)

@@ -707,10 +707,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Int32, Int32, Double)

@@ -756,10 +756,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Int32, Int32, Double, Distance)

@@ -809,10 +809,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate(Int32, Int32, Double, Distance, Double, Double)

@@ -878,10 +878,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -913,10 +913,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Char, Char)

@@ -969,10 +969,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32)

@@ -1079,10 +1079,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Factory.BlueprintConfig.html b/docs/api/GoRogue.Factory.BlueprintConfig.html new file mode 100644 index 00000000..18dab05a --- /dev/null +++ b/docs/api/GoRogue.Factory.BlueprintConfig.html @@ -0,0 +1,191 @@ + + + + + + + + Class BlueprintConfig + + + + + + + + + + + + + + + + +
+
+ + + + +
+ + + +
+ + + + + + diff --git a/docs/api/GoRogue.Factory.Factory-1.html b/docs/api/GoRogue.Factory.Factory-1.html new file mode 100644 index 00000000..33a36614 --- /dev/null +++ b/docs/api/GoRogue.Factory.Factory-1.html @@ -0,0 +1,261 @@ + + + + + + + + Class Factory<TProduced> + + + + + + + + + + + + + + + + +
+
+ + + + +
+ + + +
+ + + + + + diff --git a/docs/api/GoRogue.Factory.Factory-2.html b/docs/api/GoRogue.Factory.Factory-2.html new file mode 100644 index 00000000..b3808ec7 --- /dev/null +++ b/docs/api/GoRogue.Factory.Factory-2.html @@ -0,0 +1,470 @@ + + + + + + + + Class Factory<TBlueprintConfig, TProduced> + + + + + + + + + + + + + + + + +
+
+ + + + +
+ + + +
+ + + + + + diff --git a/docs/api/GoRogue.Factory.IBlueprint-2.html b/docs/api/GoRogue.Factory.IBlueprint-2.html new file mode 100644 index 00000000..52db37f8 --- /dev/null +++ b/docs/api/GoRogue.Factory.IBlueprint-2.html @@ -0,0 +1,237 @@ + + + + + + + + Interface IBlueprint<TBlueprintConfig, TProduced> + + + + + + + + + + + + + + + + +
+
+ + + + +
+ + + +
+ + + + + + diff --git a/docs/api/GoRogue.Factory.IFactoryObject.html b/docs/api/GoRogue.Factory.IFactoryObject.html new file mode 100644 index 00000000..50cfca01 --- /dev/null +++ b/docs/api/GoRogue.Factory.IFactoryObject.html @@ -0,0 +1,165 @@ + + + + + + + + Interface IFactoryObject + + + + + + + + + + + + + + + + +
+
+ + + + +
+ + + +
+ + + + + + diff --git a/docs/api/GoRogue.Factory.ItemNotDefinedException.html b/docs/api/GoRogue.Factory.ItemNotDefinedException.html new file mode 100644 index 00000000..ca3845a5 --- /dev/null +++ b/docs/api/GoRogue.Factory.ItemNotDefinedException.html @@ -0,0 +1,238 @@ + + + + + + + + Class ItemNotDefinedException + + + + + + + + + + + + + + + + +
+
+ + + + +
+ + + +
+ + + + + + diff --git a/docs/api/GoRogue.Factory.SimpleBlueprint-1.html b/docs/api/GoRogue.Factory.SimpleBlueprint-1.html new file mode 100644 index 00000000..374e18ba --- /dev/null +++ b/docs/api/GoRogue.Factory.SimpleBlueprint-1.html @@ -0,0 +1,337 @@ + + + + + + + + Class SimpleBlueprint<TProduced> + + + + + + + + + + + + + + + + +
+
+ + + + +
+ + + +
+ + + + + + diff --git a/docs/api/GoRogue.Factory.html b/docs/api/GoRogue.Factory.html new file mode 100644 index 00000000..778160e5 --- /dev/null +++ b/docs/api/GoRogue.Factory.html @@ -0,0 +1,140 @@ + + + + + + + + Namespace GoRogue.Factory + + + + + + + + + + + + + + + + +
+
+ + + + +
+ + + +
+ + + + + + diff --git a/docs/api/GoRogue.GameFramework.Components.IGameObjectComponent.html b/docs/api/GoRogue.GameFramework.Components.IGameObjectComponent.html index 149e61e7..4365bcc2 100644 --- a/docs/api/GoRogue.GameFramework.Components.IGameObjectComponent.html +++ b/docs/api/GoRogue.GameFramework.Components.IGameObjectComponent.html @@ -90,10 +90,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Parent

@@ -132,10 +132,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.GameFramework.GameObject.html b/docs/api/GoRogue.GameFramework.GameObject.html index 82ba338e..c9bcbb50 100644 --- a/docs/api/GoRogue.GameFramework.GameObject.html +++ b/docs/api/GoRogue.GameFramework.GameObject.html @@ -160,10 +160,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

GameObject(Coord, Int32, IGameObject, Boolean, Boolean, Boolean)

@@ -232,10 +232,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentMap

@@ -264,10 +264,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ID

@@ -297,10 +297,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsStatic

@@ -329,10 +329,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsTransparent

@@ -361,10 +361,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsWalkable

@@ -394,10 +394,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Layer

@@ -425,10 +425,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Position

@@ -462,10 +462,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AddComponent(Object)

@@ -498,10 +498,10 @@
Overrides
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateID()

@@ -538,10 +538,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

MoveIn(Direction)

@@ -589,10 +589,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

OnMapChanged(Map)

@@ -624,10 +624,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RemoveComponents(Object[])

@@ -663,10 +663,10 @@

Events

| - Improve this Doc + Improve this Doc - View Source + View Source

Moved

Event fired whenever this object's grid position is successfully changed. Fired regardless of whether @@ -717,10 +717,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.GameFramework.IGameObject.html b/docs/api/GoRogue.GameFramework.IGameObject.html index f722a8a4..742adf6d 100644 --- a/docs/api/GoRogue.GameFramework.IGameObject.html +++ b/docs/api/GoRogue.GameFramework.IGameObject.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentMap

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsStatic

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsTransparent

@@ -222,10 +222,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsWalkable

@@ -255,10 +255,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Position

@@ -292,10 +292,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

MoveIn(Direction)

@@ -343,10 +343,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

OnMapChanged(Map)

@@ -380,10 +380,10 @@

Events

| - Improve this Doc + Improve this Doc - View Source + View Source

Moved

Event fired whenever this object's grid position is successfully changed. Fired regardless of whether @@ -421,10 +421,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.GameFramework.Map.html b/docs/api/GoRogue.GameFramework.Map.html index 6dc840ed..0dc6baca 100644 --- a/docs/api/GoRogue.GameFramework.Map.html +++ b/docs/api/GoRogue.GameFramework.Map.html @@ -132,10 +132,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

Map(ISettableMapView<IGameObject>, Int32, Distance, UInt32, UInt32, UInt32)

@@ -209,10 +209,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Map(Int32, Int32, Int32, Distance, UInt32, UInt32, UInt32)

@@ -284,10 +284,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

Explored

Whether or not each tile is considered explored. Tiles start off unexplored, and become explored as soon as they are within @@ -317,10 +317,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AStar

@@ -349,10 +349,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DistanceMeasurement

@@ -380,10 +380,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Entities

@@ -411,10 +411,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FOV

@@ -442,10 +442,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -473,10 +473,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -523,10 +523,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -573,10 +573,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -629,10 +629,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LayerMasker

@@ -660,10 +660,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LayersBlockingTransparency

@@ -692,10 +692,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LayersBlockingWalkability

@@ -724,10 +724,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Terrain

@@ -755,10 +755,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransparencyView

@@ -787,10 +787,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WalkabilityView

@@ -819,10 +819,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -852,10 +852,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AddEntity(IGameObject)

@@ -903,10 +903,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ApplyTerrainOverlay(IMapView<IGameObject>)

@@ -939,10 +939,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ApplyTerrainOverlay<T>(IMapView<T>, Func<Coord, T, IGameObject>)

@@ -996,10 +996,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

CalculateFOV(Coord, Double)

@@ -1038,10 +1038,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

CalculateFOV(Coord, Double, Distance)

@@ -1087,10 +1087,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

CalculateFOV(Coord, Double, Distance, Double, Double)

@@ -1150,10 +1150,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

CalculateFOV(Int32, Int32, Double)

@@ -1198,10 +1198,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

CalculateFOV(Int32, Int32, Double, Distance)

@@ -1253,10 +1253,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

CalculateFOV(Int32, Int32, Double, Distance, Double, Double)

@@ -1321,10 +1321,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

CreateMap<T>(ISettableMapView<T>, Int32, Distance, UInt32, UInt32, UInt32)

@@ -1436,10 +1436,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

GetEntities<EntityType>(Coord, UInt32)

@@ -1511,10 +1511,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetEntities<EntityType>(Int32, Int32, UInt32)

@@ -1592,10 +1592,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetEntity<EntityType>(Coord, UInt32)

@@ -1668,10 +1668,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetEntity<EntityType>(Int32, Int32, UInt32)

@@ -1750,10 +1750,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetObject(Coord, UInt32)

@@ -1807,10 +1807,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetObject(Int32, Int32, UInt32)

@@ -1871,10 +1871,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetObject<ObjectType>(Coord, UInt32)

@@ -1947,10 +1947,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetObject<ObjectType>(Int32, Int32, UInt32)

@@ -2029,10 +2029,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetObjects(Coord, UInt32)

@@ -2086,10 +2086,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetObjects(Int32, Int32, UInt32)

@@ -2149,10 +2149,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetObjects<ObjectType>(Coord, UInt32)

@@ -2224,10 +2224,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetObjects<ObjectType>(Int32, Int32, UInt32)

@@ -2305,10 +2305,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetTerrain(Coord)

@@ -2355,10 +2355,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetTerrain(Int32, Int32)

@@ -2411,10 +2411,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetTerrain<TerrainType>(Coord)

@@ -2480,10 +2480,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetTerrain<TerrainType>(Int32, Int32)

@@ -2555,10 +2555,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RemoveEntity(IGameObject)

@@ -2605,10 +2605,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

SetTerrain(IGameObject)

@@ -2642,10 +2642,10 @@

Events

| - Improve this Doc + Improve this Doc - View Source + View Source

ObjectAdded

Event that is fired whenever some object is added to the map.

@@ -2672,10 +2672,10 @@
Event Type
| - Improve this Doc + Improve this Doc - View Source + View Source

ObjectMoved

Event that is fired whenever some object that is part of the map is successfully moved.

@@ -2702,10 +2702,10 @@
Event Type
| - Improve this Doc + Improve this Doc - View Source + View Source

ObjectRemoved

Event that is fired whenever some object is removed from the map.

@@ -2788,10 +2788,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.IDGenerator.html b/docs/api/GoRogue.IDGenerator.html index 5fba2c09..513469e5 100644 --- a/docs/api/GoRogue.IDGenerator.html +++ b/docs/api/GoRogue.IDGenerator.html @@ -122,10 +122,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

IDGenerator(UInt32)

@@ -159,10 +159,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

UseID()

@@ -202,10 +202,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.IHasComponents.html b/docs/api/GoRogue.IHasComponents.html index 73a5ff7e..133633de 100644 --- a/docs/api/GoRogue.IHasComponents.html +++ b/docs/api/GoRogue.IHasComponents.html @@ -88,10 +88,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AddComponent(Object)

@@ -122,10 +122,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetComponent<T>()

@@ -172,10 +172,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

GetComponents<T>()

@@ -220,10 +220,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

HasComponent(Type)

@@ -271,10 +271,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

HasComponent<T>()

@@ -319,10 +319,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

HasComponents(Type[])

@@ -370,10 +370,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

RemoveComponent(Object)

@@ -404,10 +404,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RemoveComponents(Object[])

@@ -448,10 +448,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.IHasID.html b/docs/api/GoRogue.IHasID.html index 99aa4ea4..f832e5f9 100644 --- a/docs/api/GoRogue.IHasID.html +++ b/docs/api/GoRogue.IHasID.html @@ -105,10 +105,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ID

@@ -146,10 +146,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.IHasLayer.html b/docs/api/GoRogue.IHasLayer.html index 1f3f415a..bba9189d 100644 --- a/docs/api/GoRogue.IHasLayer.html +++ b/docs/api/GoRogue.IHasLayer.html @@ -86,10 +86,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Layer

@@ -132,10 +132,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.IReadOnlyDisjointSet.html b/docs/api/GoRogue.IReadOnlyDisjointSet.html index bba7a5e2..c5fb750c 100644 --- a/docs/api/GoRogue.IReadOnlyDisjointSet.html +++ b/docs/api/GoRogue.IReadOnlyDisjointSet.html @@ -86,10 +86,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Count

@@ -119,10 +119,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Find(Int32)

@@ -169,10 +169,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

InSameSet(Int32, Int32)

@@ -233,10 +233,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.IReadOnlyFOV.html b/docs/api/GoRogue.IReadOnlyFOV.html index 7beb1533..41d4ba41 100644 --- a/docs/api/GoRogue.IReadOnlyFOV.html +++ b/docs/api/GoRogue.IReadOnlyFOV.html @@ -104,10 +104,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

BooleanFOV

@@ -136,10 +136,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentFOV

@@ -167,10 +167,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NewlySeen

@@ -199,10 +199,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NewlyUnseen

@@ -283,10 +283,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.IReadOnlyLayeredSpatialMap-1.html b/docs/api/GoRogue.IReadOnlyLayeredSpatialMap-1.html index 72479abe..b7fdc53a 100644 --- a/docs/api/GoRogue.IReadOnlyLayeredSpatialMap-1.html +++ b/docs/api/GoRogue.IReadOnlyLayeredSpatialMap-1.html @@ -148,10 +148,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

LayerMasker

@@ -179,10 +179,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Layers

@@ -211,10 +211,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NumberOfLayers

@@ -242,10 +242,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartingLayer

@@ -275,10 +275,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AsReadOnly()

@@ -308,10 +308,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Coord, UInt32)

@@ -366,10 +366,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Int32, Int32, UInt32)

@@ -430,10 +430,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetItems(Coord, UInt32)

@@ -489,10 +489,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetItems(Int32, Int32, UInt32)

@@ -554,10 +554,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetLayer(Int32)

@@ -604,10 +604,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetLayers(UInt32)

@@ -668,10 +668,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.IReadOnlyRadiusAreaProvider.html b/docs/api/GoRogue.IReadOnlyRadiusAreaProvider.html index 948402a1..fd7208db 100644 --- a/docs/api/GoRogue.IReadOnlyRadiusAreaProvider.html +++ b/docs/api/GoRogue.IReadOnlyRadiusAreaProvider.html @@ -86,10 +86,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Bounds

@@ -118,10 +118,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Center

@@ -149,10 +149,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DistanceCalc

@@ -181,10 +181,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Radius

@@ -219,10 +219,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

CalculatePositions()

@@ -268,10 +268,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.IReadOnlySpatialMap-1.html b/docs/api/GoRogue.IReadOnlySpatialMap-1.html index b88f3e87..7f8a2b93 100644 --- a/docs/api/GoRogue.IReadOnlySpatialMap-1.html +++ b/docs/api/GoRogue.IReadOnlySpatialMap-1.html @@ -113,10 +113,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Count

@@ -144,10 +144,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Items

@@ -175,10 +175,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Positions

@@ -208,10 +208,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AsReadOnly()

@@ -241,10 +241,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(T)

@@ -291,10 +291,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Coord)

@@ -341,10 +341,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Int32, Int32)

@@ -397,10 +397,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetItems(Coord)

@@ -449,10 +449,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetItems(Int32, Int32)

@@ -507,10 +507,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetPosition(T)

@@ -559,10 +559,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Func<T, String>)

@@ -612,10 +612,10 @@

Events

| - Improve this Doc + Improve this Doc - View Source + View Source

ItemAdded

Event that is fired directly after an item has been added to the spatial map.

@@ -642,10 +642,10 @@
Event Type
| - Improve this Doc + Improve this Doc - View Source + View Source

ItemMoved

Event that is fired directly after an item in the sptial map has been moved.

@@ -672,10 +672,10 @@
Event Type
| - Improve this Doc + Improve this Doc - View Source + View Source

ItemRemoved

Event that is fired directly after an item has been removed from the spatial map.

@@ -715,10 +715,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.ISortedComponent.html b/docs/api/GoRogue.ISortedComponent.html index d1f8cc5a..128b0194 100644 --- a/docs/api/GoRogue.ISortedComponent.html +++ b/docs/api/GoRogue.ISortedComponent.html @@ -95,10 +95,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SortOrder

@@ -137,10 +137,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.ISpatialMap-1.html b/docs/api/GoRogue.ISpatialMap-1.html index 7ab23f6b..a5337556 100644 --- a/docs/api/GoRogue.ISpatialMap-1.html +++ b/docs/api/GoRogue.ISpatialMap-1.html @@ -180,10 +180,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Add(T, Coord)

@@ -237,10 +237,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Add(T, Int32, Int32)

@@ -300,10 +300,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Clear()

@@ -316,10 +316,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(T, Coord)

@@ -373,10 +373,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(T, Int32, Int32)

@@ -436,10 +436,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(Coord, Coord)

@@ -492,10 +492,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Move(Int32, Int32, Int32, Int32)

@@ -560,10 +560,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(T)

@@ -611,10 +611,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Coord)

@@ -662,10 +662,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Int32, Int32)

@@ -732,10 +732,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.ISpatialTuple-1.html b/docs/api/GoRogue.ISpatialTuple-1.html index 5a3251d4..d331828f 100644 --- a/docs/api/GoRogue.ISpatialTuple-1.html +++ b/docs/api/GoRogue.ISpatialTuple-1.html @@ -102,10 +102,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Item

@@ -133,10 +133,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Position

@@ -174,10 +174,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.ItemEventArgs-1.html b/docs/api/GoRogue.ItemEventArgs-1.html index d501b698..5cd7bcc9 100644 --- a/docs/api/GoRogue.ItemEventArgs-1.html +++ b/docs/api/GoRogue.ItemEventArgs-1.html @@ -136,10 +136,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ItemEventArgs(T, Coord)

@@ -176,10 +176,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ItemEventArgs(T, Int32, Int32)

@@ -224,10 +224,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Item

@@ -255,10 +255,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Position

@@ -296,10 +296,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.ItemMovedEventArgs-1.html b/docs/api/GoRogue.ItemMovedEventArgs-1.html index 8de9b772..33645044 100644 --- a/docs/api/GoRogue.ItemMovedEventArgs-1.html +++ b/docs/api/GoRogue.ItemMovedEventArgs-1.html @@ -135,10 +135,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ItemMovedEventArgs(T, Coord, Coord)

@@ -181,10 +181,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ItemMovedEventArgs(T, Int32, Int32, Int32, Int32)

@@ -241,10 +241,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Item

@@ -272,10 +272,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NewPosition

@@ -303,10 +303,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OldPosition

@@ -344,10 +344,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.LayerMasker.html b/docs/api/GoRogue.LayerMasker.html index 3a405e6b..9aba4d73 100644 --- a/docs/api/GoRogue.LayerMasker.html +++ b/docs/api/GoRogue.LayerMasker.html @@ -125,10 +125,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

LayerMasker(Int32)

@@ -162,10 +162,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

ALL_LAYERS

Layer-mask representing all layers.

@@ -192,10 +192,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DEFAULT

Default layer masker, that excludes no possible layers from its results.

@@ -222,10 +222,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NO_LAYERS

Layer mask representing no layers.

@@ -254,10 +254,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

NumberOfLayers

@@ -288,10 +288,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AddLayers(UInt32, IEnumerable<Int32>)

@@ -347,10 +347,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

AddLayers(UInt32, Int32[])

@@ -406,10 +406,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

HasLayer(UInt32, Int32)

@@ -464,10 +464,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Layers(UInt32)

@@ -516,10 +516,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Mask(IEnumerable<Int32>)

@@ -568,10 +568,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Mask(Int32[])

@@ -620,10 +620,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

MaskAllAbove(Int32)

@@ -673,10 +673,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

MaskAllBelow(Int32)

@@ -736,10 +736,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.LayeredSpatialMap-1.html b/docs/api/GoRogue.LayeredSpatialMap-1.html index c1142e2c..5874de2b 100644 --- a/docs/api/GoRogue.LayeredSpatialMap-1.html +++ b/docs/api/GoRogue.LayeredSpatialMap-1.html @@ -275,10 +275,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

LayeredSpatialMap(Int32, Int32, UInt32)

@@ -360,10 +360,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Lines.Algorithm.html b/docs/api/GoRogue.Lines.Algorithm.html index 7d74ff98..4c76dfa7 100644 --- a/docs/api/GoRogue.Lines.Algorithm.html +++ b/docs/api/GoRogue.Lines.Algorithm.html @@ -137,10 +137,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Lines.html b/docs/api/GoRogue.Lines.html index 3127b211..5465da1e 100644 --- a/docs/api/GoRogue.Lines.html +++ b/docs/api/GoRogue.Lines.html @@ -116,10 +116,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Get(Coord, Coord, Lines.Algorithm)

@@ -180,10 +180,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Get(Int32, Int32, Int32, Int32, Lines.Algorithm)

@@ -262,10 +262,10 @@
Returns
diff --git a/docs/api/GoRogue.MapGeneration.Connectors.CenterBoundsConnectionPointSelector.html b/docs/api/GoRogue.MapGeneration.Connectors.CenterBoundsConnectionPointSelector.html index e1ebb538..69008944 100644 --- a/docs/api/GoRogue.MapGeneration.Connectors.CenterBoundsConnectionPointSelector.html +++ b/docs/api/GoRogue.MapGeneration.Connectors.CenterBoundsConnectionPointSelector.html @@ -122,10 +122,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

SelectConnectionPoints(IReadOnlyMapArea, IReadOnlyMapArea)

@@ -193,10 +193,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapGeneration.Connectors.ClosestConnectionPointSelector.html b/docs/api/GoRogue.MapGeneration.Connectors.ClosestConnectionPointSelector.html index 10edf8d2..f42fe335 100644 --- a/docs/api/GoRogue.MapGeneration.Connectors.ClosestConnectionPointSelector.html +++ b/docs/api/GoRogue.MapGeneration.Connectors.ClosestConnectionPointSelector.html @@ -120,10 +120,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ClosestConnectionPointSelector(Distance)

@@ -156,10 +156,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DistanceCalculation

@@ -189,10 +189,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

SelectConnectionPoints(IReadOnlyMapArea, IReadOnlyMapArea)

@@ -266,10 +266,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapGeneration.Connectors.ClosestMapAreaConnector.html b/docs/api/GoRogue.MapGeneration.Connectors.ClosestMapAreaConnector.html index 0634d027..bb24cc86 100644 --- a/docs/api/GoRogue.MapGeneration.Connectors.ClosestMapAreaConnector.html +++ b/docs/api/GoRogue.MapGeneration.Connectors.ClosestMapAreaConnector.html @@ -123,10 +123,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Connect(ISettableMapView<Boolean>, Distance, IAreaConnectionPointSelector, ITunnelCreator)

@@ -178,10 +178,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Connect(ISettableMapView<Boolean>, IReadOnlyList<MapArea>, Distance, IAreaConnectionPointSelector, ITunnelCreator)

@@ -244,10 +244,10 @@
Parameters
diff --git a/docs/api/GoRogue.MapGeneration.Connectors.DeadEndTrimmer.html b/docs/api/GoRogue.MapGeneration.Connectors.DeadEndTrimmer.html index d9e5989d..f8e38819 100644 --- a/docs/api/GoRogue.MapGeneration.Connectors.DeadEndTrimmer.html +++ b/docs/api/GoRogue.MapGeneration.Connectors.DeadEndTrimmer.html @@ -115,10 +115,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Trim(ISettableMapView<Boolean>, IEnumerable<MapArea>, Int32, IGenerator)

@@ -167,10 +167,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Trim(ISettableMapView<Boolean>, Int32, IGenerator)

@@ -219,10 +219,10 @@
Parameters
diff --git a/docs/api/GoRogue.MapGeneration.Connectors.DirectLineTunnelCreator.html b/docs/api/GoRogue.MapGeneration.Connectors.DirectLineTunnelCreator.html index 0278ed61..36263549 100644 --- a/docs/api/GoRogue.MapGeneration.Connectors.DirectLineTunnelCreator.html +++ b/docs/api/GoRogue.MapGeneration.Connectors.DirectLineTunnelCreator.html @@ -122,10 +122,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

DirectLineTunnelCreator(AdjacencyRule, Boolean)

@@ -165,10 +165,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

CreateTunnel(ISettableMapView<Boolean>, Coord, Coord)

@@ -211,10 +211,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

CreateTunnel(ISettableMapView<Boolean>, Int32, Int32, Int32, Int32)

@@ -283,10 +283,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapGeneration.Connectors.HorizontalVerticalTunnelCreator.html b/docs/api/GoRogue.MapGeneration.Connectors.HorizontalVerticalTunnelCreator.html index 482d396c..f47a9f3c 100644 --- a/docs/api/GoRogue.MapGeneration.Connectors.HorizontalVerticalTunnelCreator.html +++ b/docs/api/GoRogue.MapGeneration.Connectors.HorizontalVerticalTunnelCreator.html @@ -120,10 +120,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

HorizontalVerticalTunnelCreator(IGenerator)

@@ -156,10 +156,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

CreateTunnel(ISettableMapView<Boolean>, Coord, Coord)

@@ -202,10 +202,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

CreateTunnel(ISettableMapView<Boolean>, Int32, Int32, Int32, Int32)

@@ -274,10 +274,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapGeneration.Connectors.IAreaConnectionPointSelector.html b/docs/api/GoRogue.MapGeneration.Connectors.IAreaConnectionPointSelector.html index 935e127c..08964b0e 100644 --- a/docs/api/GoRogue.MapGeneration.Connectors.IAreaConnectionPointSelector.html +++ b/docs/api/GoRogue.MapGeneration.Connectors.IAreaConnectionPointSelector.html @@ -87,10 +87,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

SelectConnectionPoints(IReadOnlyMapArea, IReadOnlyMapArea)

@@ -156,10 +156,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapGeneration.Connectors.ITunnelCreator.html b/docs/api/GoRogue.MapGeneration.Connectors.ITunnelCreator.html index ec89ade4..34ee7945 100644 --- a/docs/api/GoRogue.MapGeneration.Connectors.ITunnelCreator.html +++ b/docs/api/GoRogue.MapGeneration.Connectors.ITunnelCreator.html @@ -87,10 +87,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

CreateTunnel(ISettableMapView<Boolean>, Coord, Coord)

@@ -134,10 +134,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

CreateTunnel(ISettableMapView<Boolean>, Int32, Int32, Int32, Int32)

@@ -203,10 +203,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapGeneration.Connectors.OrderedMapAreaConnector.html b/docs/api/GoRogue.MapGeneration.Connectors.OrderedMapAreaConnector.html index f5f9ebff..0f7452ea 100644 --- a/docs/api/GoRogue.MapGeneration.Connectors.OrderedMapAreaConnector.html +++ b/docs/api/GoRogue.MapGeneration.Connectors.OrderedMapAreaConnector.html @@ -116,10 +116,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Connect(ISettableMapView<Boolean>, AdjacencyRule, IAreaConnectionPointSelector, ITunnelCreator, IGenerator, Boolean)

@@ -188,10 +188,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Connect(ISettableMapView<Boolean>, IReadOnlyList<IReadOnlyMapArea>, IAreaConnectionPointSelector, ITunnelCreator)

@@ -251,10 +251,10 @@
Parameters
diff --git a/docs/api/GoRogue.MapGeneration.Connectors.RandomConnectionPointSelector.html b/docs/api/GoRogue.MapGeneration.Connectors.RandomConnectionPointSelector.html index a15f6ec2..5946cad5 100644 --- a/docs/api/GoRogue.MapGeneration.Connectors.RandomConnectionPointSelector.html +++ b/docs/api/GoRogue.MapGeneration.Connectors.RandomConnectionPointSelector.html @@ -120,10 +120,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

RandomConnectionPointSelector(IGenerator)

@@ -156,10 +156,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

SelectConnectionPoints(IReadOnlyMapArea, IReadOnlyMapArea)

@@ -226,10 +226,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapGeneration.Connectors.RoomDoorConnector.html b/docs/api/GoRogue.MapGeneration.Connectors.RoomDoorConnector.html index 75a6411d..53f9bcd3 100644 --- a/docs/api/GoRogue.MapGeneration.Connectors.RoomDoorConnector.html +++ b/docs/api/GoRogue.MapGeneration.Connectors.RoomDoorConnector.html @@ -115,10 +115,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ConnectRooms(ArrayMap<Boolean>, IEnumerable<Rectangle>, Int32, Int32, Int32, Int32, Int32)

@@ -203,10 +203,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ConnectRooms(ArrayMap<Boolean>, IGenerator, IEnumerable<Rectangle>, Int32, Int32, Int32, Int32, Int32)

@@ -303,10 +303,10 @@
Returns
diff --git a/docs/api/GoRogue.MapGeneration.Generators.BasicRoomsGenerator.html b/docs/api/GoRogue.MapGeneration.Generators.BasicRoomsGenerator.html index 1feb39c9..dea47555 100644 --- a/docs/api/GoRogue.MapGeneration.Generators.BasicRoomsGenerator.html +++ b/docs/api/GoRogue.MapGeneration.Generators.BasicRoomsGenerator.html @@ -120,10 +120,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Generate(ISettableMapView<Boolean>, Int32, Int32, Int32, Int32)

@@ -201,10 +201,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Generate(ISettableMapView<Boolean>, IGenerator, Int32, Int32, Int32, Int32)

@@ -295,10 +295,10 @@
diff --git a/docs/api/GoRogue.MapGeneration.Generators.CellularAutomataAreaGenerator.html b/docs/api/GoRogue.MapGeneration.Generators.CellularAutomataAreaGenerator.html index 3147d2e7..fdc15e79 100644 --- a/docs/api/GoRogue.MapGeneration.Generators.CellularAutomataAreaGenerator.html +++ b/docs/api/GoRogue.MapGeneration.Generators.CellularAutomataAreaGenerator.html @@ -128,10 +128,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Generate(ISettableMapView<Boolean>, IGenerator, Int32, Int32, Int32)

@@ -198,10 +198,10 @@
Parameters
diff --git a/docs/api/GoRogue.MapGeneration.Generators.MazeGenerator.html b/docs/api/GoRogue.MapGeneration.Generators.MazeGenerator.html index 7fb44621..94dc68c8 100644 --- a/docs/api/GoRogue.MapGeneration.Generators.MazeGenerator.html +++ b/docs/api/GoRogue.MapGeneration.Generators.MazeGenerator.html @@ -115,10 +115,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Generate(ISettableMapView<Boolean>, Int32)

@@ -173,10 +173,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Generate(ISettableMapView<Boolean>, IGenerator, Int32)

@@ -243,10 +243,10 @@
Returns
diff --git a/docs/api/GoRogue.MapGeneration.Generators.RoomsGenerator.html b/docs/api/GoRogue.MapGeneration.Generators.RoomsGenerator.html index 46134ed0..a881416b 100644 --- a/docs/api/GoRogue.MapGeneration.Generators.RoomsGenerator.html +++ b/docs/api/GoRogue.MapGeneration.Generators.RoomsGenerator.html @@ -119,10 +119,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Generate(ISettableMapView<Boolean>, Int32, Int32, Int32, Int32, Single, Single, Int32, Int32)

@@ -220,10 +220,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Generate(ISettableMapView<Boolean>, IGenerator, Int32, Int32, Int32, Int32, Single, Single, Int32, Int32)

@@ -333,10 +333,10 @@
Returns
diff --git a/docs/api/GoRogue.MapGeneration.IReadOnlyMapArea.html b/docs/api/GoRogue.MapGeneration.IReadOnlyMapArea.html index 1a9e69c0..da0bcf4b 100644 --- a/docs/api/GoRogue.MapGeneration.IReadOnlyMapArea.html +++ b/docs/api/GoRogue.MapGeneration.IReadOnlyMapArea.html @@ -86,10 +86,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Bounds

@@ -117,10 +117,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Count

@@ -148,10 +148,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Positions

@@ -181,10 +181,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Coord)

@@ -231,10 +231,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(IReadOnlyMapArea)

@@ -281,10 +281,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Int32, Int32)

@@ -337,10 +337,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Intersects(IReadOnlyMapArea)

@@ -390,10 +390,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition(Func<Coord, Boolean>, IGenerator)

@@ -448,10 +448,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition(IGenerator)

@@ -508,10 +508,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapGeneration.MapArea.html b/docs/api/GoRogue.MapGeneration.MapArea.html index b0dfdb2e..e8cf0c09 100644 --- a/docs/api/GoRogue.MapGeneration.MapArea.html +++ b/docs/api/GoRogue.MapGeneration.MapArea.html @@ -112,10 +112,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

MapArea()

@@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Bounds

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Count

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Positions

@@ -225,10 +225,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Add(Coord)

@@ -264,10 +264,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

Add(IReadOnlyMapArea)

@@ -298,10 +298,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Add(Rectangle)

@@ -332,10 +332,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Add(IEnumerable<Coord>)

@@ -367,10 +367,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Add(Int32, Int32)

@@ -412,10 +412,10 @@
Re
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Coord)

@@ -462,10 +462,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(IReadOnlyMapArea)

@@ -512,10 +512,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Int32, Int32)

@@ -568,10 +568,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Object)

@@ -620,10 +620,10 @@
Overrides
System.Object.Equals(System.Object)
| - Improve this Doc + Improve this Doc - View Source + View Source

GetDifference(IReadOnlyMapArea, IReadOnlyMapArea)

@@ -678,10 +678,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetHashCode()

@@ -712,10 +712,10 @@
Overrides
System.Object.GetHashCode()
| - Improve this Doc + Improve this Doc - View Source + View Source

GetIntersection(IReadOnlyMapArea, IReadOnlyMapArea)

@@ -768,10 +768,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetUnion(IReadOnlyMapArea, IReadOnlyMapArea)

@@ -824,10 +824,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Intersects(IReadOnlyMapArea)

@@ -877,10 +877,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition(Func<Coord, Boolean>, IGenerator)

@@ -935,10 +935,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition(IGenerator)

@@ -985,10 +985,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Coord)

@@ -1021,10 +1021,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(IReadOnlyMapArea)

@@ -1055,10 +1055,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Rectangle)

@@ -1089,10 +1089,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(HashSet<Coord>)

@@ -1123,10 +1123,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(IEnumerable<Coord>)

@@ -1157,10 +1157,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Func<Coord, Boolean>)

@@ -1191,10 +1191,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Remove(Int32, Int32)

@@ -1233,10 +1233,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -1270,10 +1270,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Addition(MapArea, Coord)

@@ -1326,10 +1326,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(MapArea, MapArea)

@@ -1383,10 +1383,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(MapArea, MapArea)

@@ -1453,10 +1453,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapGeneration.MapAreaFinder.html b/docs/api/GoRogue.MapGeneration.MapAreaFinder.html index 8fb10f90..ec3c5b67 100644 --- a/docs/api/GoRogue.MapGeneration.MapAreaFinder.html +++ b/docs/api/GoRogue.MapGeneration.MapAreaFinder.html @@ -122,10 +122,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

MapAreaFinder(IMapView<Boolean>, AdjacencyRule)

@@ -164,10 +164,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

AdjacencyMethod

The method used for determining connectivity of the grid.

@@ -194,10 +194,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Map

Map view indicating which cells should be considered part of a map area and which should not.

@@ -226,10 +226,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

MapAreas()

@@ -258,10 +258,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

MapAreasFor(IMapView<Boolean>, AdjacencyRule)

@@ -326,10 +326,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapGeneration.QuickGenerators.html b/docs/api/GoRogue.MapGeneration.QuickGenerators.html index eb535922..c735e013 100644 --- a/docs/api/GoRogue.MapGeneration.QuickGenerators.html +++ b/docs/api/GoRogue.MapGeneration.QuickGenerators.html @@ -117,10 +117,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateCellularAutomataMap(ISettableMapView<Boolean>, IGenerator, Int32, Int32, Int32)

@@ -189,10 +189,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateDungeonMazeMap(ISettableMapView<Boolean>, Int32, Int32, Int32, Int32, Single, Single, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32)

@@ -343,10 +343,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateDungeonMazeMap(ISettableMapView<Boolean>, IGenerator, Int32, Int32, Int32, Int32, Single, Single, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32)

@@ -503,10 +503,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateRandomRoomsMap(ISettableMapView<Boolean>, Int32, Int32, Int32, Int32)

@@ -582,10 +582,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateRandomRoomsMap(ISettableMapView<Boolean>, IGenerator, Int32, Int32, Int32, Int32)

@@ -668,10 +668,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateRectangleMap(ISettableMapView<Boolean>)

@@ -710,10 +710,10 @@
Parameters
diff --git a/docs/api/GoRogue.MapViews.ArrayMap-1.html b/docs/api/GoRogue.MapViews.ArrayMap-1.html index e00a0ada..2f1f4a7c 100644 --- a/docs/api/GoRogue.MapViews.ArrayMap-1.html +++ b/docs/api/GoRogue.MapViews.ArrayMap-1.html @@ -137,10 +137,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ArrayMap(T[], Int32)

@@ -178,10 +178,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ArrayMap(Int32, Int32)

@@ -220,10 +220,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -251,10 +251,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -301,10 +301,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -351,10 +351,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -407,10 +407,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -440,10 +440,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Clone()

@@ -472,10 +472,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(ArrayMap<T>)

@@ -521,10 +521,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Object)

@@ -572,10 +572,10 @@
Overrides
System.Object.Equals(System.Object)
| - Improve this Doc + Improve this Doc - View Source + View Source

GetHashCode()

@@ -605,10 +605,10 @@
Overrides
System.Object.GetHashCode()
| - Improve this Doc + Improve this Doc - View Source + View Source

SetToDefault()

@@ -621,10 +621,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -655,10 +655,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Func<T, String>)

@@ -710,10 +710,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32, Func<T, String>)

@@ -776,10 +776,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(ArrayMap<T>, ArrayMap<T>)

@@ -830,10 +830,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(ArrayMap<T> to T[])

@@ -879,10 +879,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(ArrayMap<T>, ArrayMap<T>)

@@ -1001,10 +1001,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapViews.ArrayMap2D-1.html b/docs/api/GoRogue.MapViews.ArrayMap2D-1.html index 7ffd8e7b..fad14c88 100644 --- a/docs/api/GoRogue.MapViews.ArrayMap2D-1.html +++ b/docs/api/GoRogue.MapViews.ArrayMap2D-1.html @@ -137,10 +137,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ArrayMap2D(T[,])

@@ -171,10 +171,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ArrayMap2D(Int32, Int32)

@@ -213,10 +213,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -244,10 +244,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -294,10 +294,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -345,10 +345,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -401,10 +401,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -434,10 +434,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Clone()

@@ -466,10 +466,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(ArrayMap2D<T>)

@@ -515,10 +515,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Object)

@@ -566,10 +566,10 @@
Overrides
System.Object.Equals(System.Object)
| - Improve this Doc + Improve this Doc - View Source + View Source

GetHashCode()

@@ -599,10 +599,10 @@
Overrides
System.Object.GetHashCode()
| - Improve this Doc + Improve this Doc - View Source + View Source

SetToDefault()

@@ -615,10 +615,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -649,10 +649,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Func<T, String>)

@@ -704,10 +704,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32, Func<T, String>)

@@ -770,10 +770,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(ArrayMap2D<T>, ArrayMap2D<T>)

@@ -824,10 +824,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(ArrayMap2D<T> to T[,])

@@ -873,10 +873,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(ArrayMap2D<T>, ArrayMap2D<T>)

@@ -995,10 +995,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapViews.IMapView-1.html b/docs/api/GoRogue.MapViews.IMapView-1.html index 93e53fa8..98feb41e 100644 --- a/docs/api/GoRogue.MapViews.IMapView-1.html +++ b/docs/api/GoRogue.MapViews.IMapView-1.html @@ -123,10 +123,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -154,10 +154,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -204,10 +204,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -261,10 +261,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -317,10 +317,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -400,10 +400,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapViews.IMapViewExtensions.html b/docs/api/GoRogue.MapViews.IMapViewExtensions.html index 5f9ba7c4..0ad8350d 100644 --- a/docs/api/GoRogue.MapViews.IMapViewExtensions.html +++ b/docs/api/GoRogue.MapViews.IMapViewExtensions.html @@ -122,10 +122,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ApplyOverlay<T>(ISettableMapView<T>, IMapView<T>)

@@ -177,10 +177,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Bounds<T>(IMapView<T>)

@@ -241,10 +241,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains<T>(IMapView<T>, Coord)

@@ -311,10 +311,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains<T>(IMapView<T>, Int32, Int32)

@@ -387,10 +387,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtendToString<T>(IMapView<T>, Int32, String, String, Func<T, String>, String, String, String, String)

@@ -507,10 +507,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtendToString<T>(IMapView<T>, String, String, Func<T, String>, String, String, String, String)

@@ -617,10 +617,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Positions<T>(IMapView<T>)

@@ -682,10 +682,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomItem<T>(IMapView<T>, Func<Coord, T, Boolean>, IGenerator)

@@ -760,10 +760,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomItem<T>(IMapView<T>, IGenerator)

@@ -830,10 +830,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition<T>(IMapView<T>, T, IGenerator)

@@ -907,10 +907,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition<T>(IMapView<T>, HashSet<T>, IGenerator)

@@ -986,10 +986,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition<T>(IMapView<T>, IEnumerable<T>, IGenerator)

@@ -1065,10 +1065,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition<T>(IMapView<T>, Func<Coord, T, Boolean>, IGenerator)

@@ -1143,10 +1143,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition<T>(IMapView<T>, IGenerator)

@@ -1213,10 +1213,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition<T>(IMapView<T>, IGenerator, T[])

@@ -1298,10 +1298,10 @@
Type Parameters
diff --git a/docs/api/GoRogue.MapViews.ISettableMapView-1.html b/docs/api/GoRogue.MapViews.ISettableMapView-1.html index 76b27974..d06574aa 100644 --- a/docs/api/GoRogue.MapViews.ISettableMapView-1.html +++ b/docs/api/GoRogue.MapViews.ISettableMapView-1.html @@ -121,10 +121,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -171,10 +171,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -228,10 +228,10 @@
Remarks<
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -339,10 +339,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapViews.LambdaMapView-1.html b/docs/api/GoRogue.MapViews.LambdaMapView-1.html index 1ad17d41..5745219f 100644 --- a/docs/api/GoRogue.MapViews.LambdaMapView-1.html +++ b/docs/api/GoRogue.MapViews.LambdaMapView-1.html @@ -145,10 +145,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

LambdaMapView(Func<Int32>, Func<Int32>, Func<Coord, T>)

@@ -198,10 +198,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

LambdaMapView(Int32, Int32, Func<Coord, T>)

@@ -253,10 +253,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -284,10 +284,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -336,10 +336,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -389,10 +389,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -447,10 +447,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -480,10 +480,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -514,10 +514,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Func<T, String>)

@@ -569,10 +569,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32, Func<T, String>)

@@ -689,10 +689,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapViews.LambdaSettableMapView-1.html b/docs/api/GoRogue.MapViews.LambdaSettableMapView-1.html index 09939f67..2d47b233 100644 --- a/docs/api/GoRogue.MapViews.LambdaSettableMapView-1.html +++ b/docs/api/GoRogue.MapViews.LambdaSettableMapView-1.html @@ -140,10 +140,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

LambdaSettableMapView(Func<Int32>, Func<Int32>, Func<Coord, T>, Action<Coord, T>)

@@ -200,10 +200,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

LambdaSettableMapView(Int32, Int32, Func<Coord, T>, Action<Coord, T>)

@@ -260,10 +260,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -291,10 +291,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -396,10 +396,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -454,10 +454,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -487,10 +487,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -521,10 +521,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Func<T, String>)

@@ -576,10 +576,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32, Func<T, String>)

@@ -702,10 +702,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapViews.LambdaSettableTranslationMap-2.html b/docs/api/GoRogue.MapViews.LambdaSettableTranslationMap-2.html index 437cff6c..87624f17 100644 --- a/docs/api/GoRogue.MapViews.LambdaSettableTranslationMap-2.html +++ b/docs/api/GoRogue.MapViews.LambdaSettableTranslationMap-2.html @@ -189,10 +189,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

LambdaSettableTranslationMap(ISettableMapView<T1>, ISettableMapView<T2>, Func<T1, T2>, Func<T2, T1>)

@@ -241,10 +241,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

LambdaSettableTranslationMap(ISettableMapView<T1>, ISettableMapView<T2>, Func<Coord, T1, T2>, Func<Coord, T2, T1>)

@@ -293,10 +293,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

LambdaSettableTranslationMap(ISettableMapView<T1>, Func<T1, T2>, Func<T2, T1>)

@@ -344,10 +344,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

LambdaSettableTranslationMap(ISettableMapView<T1>, Func<Coord, T1, T2>, Func<Coord, T2, T1>)

@@ -393,10 +393,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

TranslateGet(Coord, T1)

@@ -452,10 +452,10 @@
Overrides
GoRogue.MapViews.SettableTranslationMap<T1, T2>.TranslateGet(GoRogue.Coord, T1)
| - Improve this Doc + Improve this Doc - View Source + View Source

TranslateSet(Coord, T2)

@@ -573,10 +573,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapViews.LambdaTranslationMap-2.html b/docs/api/GoRogue.MapViews.LambdaTranslationMap-2.html index f0697213..9247fab6 100644 --- a/docs/api/GoRogue.MapViews.LambdaTranslationMap-2.html +++ b/docs/api/GoRogue.MapViews.LambdaTranslationMap-2.html @@ -183,10 +183,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

LambdaTranslationMap(IMapView<T1>, Func<T1, T2>)

@@ -228,10 +228,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

LambdaTranslationMap(IMapView<T1>, Func<Coord, T1, T2>)

@@ -271,10 +271,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

TranslateGet(Coord, T1)

@@ -386,10 +386,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapViews.SettableTranslationMap-2.html b/docs/api/GoRogue.MapViews.SettableTranslationMap-2.html index fd65346e..4a10b4bc 100644 --- a/docs/api/GoRogue.MapViews.SettableTranslationMap-2.html +++ b/docs/api/GoRogue.MapViews.SettableTranslationMap-2.html @@ -145,10 +145,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

SettableTranslationMap(ISettableMapView<T1>)

@@ -179,10 +179,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

SettableTranslationMap(ISettableMapView<T1>, ISettableMapView<T2>)

@@ -226,10 +226,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

BaseMap

@@ -257,10 +257,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -288,10 +288,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -340,10 +340,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -392,10 +392,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -450,10 +450,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -483,10 +483,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -517,10 +517,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Func<T2, String>)

@@ -572,10 +572,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32, Func<T2, String>)

@@ -636,10 +636,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

TranslateGet(T1)

@@ -688,10 +688,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

TranslateGet(Coord, T1)

@@ -746,10 +746,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

TranslateSet(T2)

@@ -798,10 +798,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

TranslateSet(Coord, T2)

@@ -918,10 +918,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapViews.SettableViewport-1.html b/docs/api/GoRogue.MapViews.SettableViewport-1.html index fbcc81be..7b714cc0 100644 --- a/docs/api/GoRogue.MapViews.SettableViewport-1.html +++ b/docs/api/GoRogue.MapViews.SettableViewport-1.html @@ -153,10 +153,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

SettableViewport(ISettableMapView<T>)

@@ -187,10 +187,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

SettableViewport(ISettableMapView<T>, Rectangle)

@@ -229,10 +229,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -280,10 +280,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -331,10 +331,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -388,10 +388,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MapView

@@ -481,10 +481,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapViews.TranslationMap-2.html b/docs/api/GoRogue.MapViews.TranslationMap-2.html index 4afab959..a9e76936 100644 --- a/docs/api/GoRogue.MapViews.TranslationMap-2.html +++ b/docs/api/GoRogue.MapViews.TranslationMap-2.html @@ -151,10 +151,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

TranslationMap(IMapView<T1>)

@@ -187,10 +187,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

BaseMap

@@ -218,10 +218,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -249,10 +249,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -301,10 +301,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -353,10 +353,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -410,10 +410,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -443,10 +443,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -477,10 +477,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Func<T2, String>)

@@ -532,10 +532,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32, Func<T2, String>)

@@ -596,10 +596,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

TranslateGet(T1)

@@ -648,10 +648,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

TranslateGet(Coord, T1)

@@ -762,10 +762,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapViews.UnboundedViewport-1.html b/docs/api/GoRogue.MapViews.UnboundedViewport-1.html index fbd6fffb..b36f5e44 100644 --- a/docs/api/GoRogue.MapViews.UnboundedViewport-1.html +++ b/docs/api/GoRogue.MapViews.UnboundedViewport-1.html @@ -134,10 +134,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

UnboundedViewport(IMapView<T>, T)

@@ -174,10 +174,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

UnboundedViewport(IMapView<T>, Rectangle, T)

@@ -222,10 +222,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DefaultValue

The value to return if a position is accessed that is outside the actual underlying map view.

@@ -254,10 +254,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -285,10 +285,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -337,10 +337,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -389,10 +389,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -447,10 +447,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MapView

@@ -478,10 +478,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ViewArea

@@ -511,10 +511,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -544,10 +544,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -578,10 +578,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Func<T, String>)

@@ -633,10 +633,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32, Func<T, String>)

@@ -753,10 +753,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MapViews.Viewport-1.html b/docs/api/GoRogue.MapViews.Viewport-1.html index fe54cbf4..0ae444ef 100644 --- a/docs/api/GoRogue.MapViews.Viewport-1.html +++ b/docs/api/GoRogue.MapViews.Viewport-1.html @@ -146,10 +146,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

Viewport(IMapView<T>)

@@ -180,10 +180,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Viewport(IMapView<T>, Rectangle)

@@ -222,10 +222,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -253,10 +253,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -304,10 +304,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -355,10 +355,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -412,10 +412,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MapView

@@ -443,10 +443,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ViewArea

@@ -477,10 +477,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -510,10 +510,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -544,10 +544,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Func<T, String>)

@@ -599,10 +599,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32, Func<T, String>)

@@ -719,10 +719,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MathHelpers.html b/docs/api/GoRogue.MathHelpers.html index 9ac1b519..bf2da7a4 100644 --- a/docs/api/GoRogue.MathHelpers.html +++ b/docs/api/GoRogue.MathHelpers.html @@ -116,10 +116,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DEGREE_PCT_OF_CIRCLE

Result of 1/360; represents in decimal form a percent of a circle that a degree constitutes.

@@ -148,10 +148,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

RoundToMultiple(Int32, Int32)

@@ -205,10 +205,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ScaledAtan2Approx(Double, Double)

@@ -264,10 +264,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToDegree(Double)

@@ -314,10 +314,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToRadian(Double)

@@ -364,10 +364,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WrapAround(Int32, Int32)

@@ -442,10 +442,10 @@
Remar diff --git a/docs/api/GoRogue.Messaging.ISubscriber-1.html b/docs/api/GoRogue.Messaging.ISubscriber-1.html index bcb8d890..3423e563 100644 --- a/docs/api/GoRogue.Messaging.ISubscriber-1.html +++ b/docs/api/GoRogue.Messaging.ISubscriber-1.html @@ -126,10 +126,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Handle(TMessage)

@@ -171,10 +171,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Messaging.MessageBus.html b/docs/api/GoRogue.Messaging.MessageBus.html index e97cd452..7bd30e11 100644 --- a/docs/api/GoRogue.Messaging.MessageBus.html +++ b/docs/api/GoRogue.Messaging.MessageBus.html @@ -116,10 +116,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

MessageBus()

@@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SubscriberCount

@@ -167,10 +167,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

RegisterSubscriber<TMessage>(ISubscriber<TMessage>)

@@ -238,10 +238,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Send<TMessage>(TMessage)

@@ -286,10 +286,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

UnregisterSubscriber<TMessage>(ISubscriber<TMessage>)

@@ -349,10 +349,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.MultiSpatialMap-1.html b/docs/api/GoRogue.MultiSpatialMap-1.html index ada7025b..52c735ca 100644 --- a/docs/api/GoRogue.MultiSpatialMap-1.html +++ b/docs/api/GoRogue.MultiSpatialMap-1.html @@ -231,10 +231,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

MultiSpatialMap(Int32)

@@ -292,10 +292,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Pathing.AStar.html b/docs/api/GoRogue.Pathing.AStar.html index 8bd7cef2..01c9e8be 100644 --- a/docs/api/GoRogue.Pathing.AStar.html +++ b/docs/api/GoRogue.Pathing.AStar.html @@ -125,10 +125,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

AStar(IMapView<Boolean>, Distance)

@@ -168,10 +168,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

AStar(IMapView<Boolean>, Distance, IMapView<Double>, Double)

@@ -225,10 +225,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

AStar(IMapView<Boolean>, Distance, Func<Coord, Coord, Double>)

@@ -273,10 +273,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

AStar(IMapView<Boolean>, Distance, Func<Coord, Coord, Double>, IMapView<Double>)

@@ -329,10 +329,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumWeight

The minimum value that is allowed to occur in the Weights map view. This value is only used with the default heuristic @@ -363,10 +363,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DistanceMeasurement

@@ -396,10 +396,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Heuristic

@@ -429,10 +429,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxEuclideanMultiplier

@@ -463,10 +463,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WalkabilityMap

@@ -494,10 +494,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Weights

@@ -528,10 +528,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ShortestPath(Coord, Coord, Boolean)

@@ -595,10 +595,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ShortestPath(Int32, Int32, Int32, Int32, Boolean)

@@ -684,10 +684,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Pathing.FastAStar.html b/docs/api/GoRogue.Pathing.FastAStar.html index 0a50a9bd..48633552 100644 --- a/docs/api/GoRogue.Pathing.FastAStar.html +++ b/docs/api/GoRogue.Pathing.FastAStar.html @@ -151,10 +151,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

FastAStar(IMapView<Boolean>, Distance)

@@ -193,10 +193,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

FastAStar(IMapView<Boolean>, Distance, IMapView<Double>, Double)

@@ -254,10 +254,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Pathing.FleeMap.html b/docs/api/GoRogue.Pathing.FleeMap.html index e77a2528..1e54b450 100644 --- a/docs/api/GoRogue.Pathing.FleeMap.html +++ b/docs/api/GoRogue.Pathing.FleeMap.html @@ -123,10 +123,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

FleeMap(GoalMap, Double)

@@ -166,10 +166,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -247,10 +247,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -297,10 +297,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -353,10 +353,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Magnitude

@@ -386,10 +386,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -419,10 +419,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -435,10 +435,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

Finalize()

@@ -451,10 +451,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

GetDirectionOfMinValue(Coord)

@@ -502,10 +502,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetDirectionOfMinValue(Int32, Int32)

@@ -559,10 +559,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -593,10 +593,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32)

@@ -643,10 +643,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32, String)

@@ -700,10 +700,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(String)

@@ -816,10 +816,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Pathing.GoalMap.html b/docs/api/GoRogue.Pathing.GoalMap.html index a519ca09..32a305da 100644 --- a/docs/api/GoRogue.Pathing.GoalMap.html +++ b/docs/api/GoRogue.Pathing.GoalMap.html @@ -129,10 +129,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

GoalMap(IMapView<GoalState>, Distance)

@@ -172,10 +172,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

BaseMap

@@ -203,10 +203,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DistanceMeasurement

@@ -234,10 +234,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -265,10 +265,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -315,10 +315,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -365,10 +365,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -421,10 +421,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -454,10 +454,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GetDirectionOfMinValue(Coord)

@@ -505,10 +505,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetDirectionOfMinValue(Int32, Int32)

@@ -562,10 +562,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -596,10 +596,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32)

@@ -646,10 +646,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32, String)

@@ -703,10 +703,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(String)

@@ -754,10 +754,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Update()

@@ -787,10 +787,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdatePathsOnly()

@@ -822,10 +822,10 @@

Events

| - Improve this Doc + Improve this Doc - View Source + View Source

Updated

Triggers when the GoalMap is updated.

@@ -914,10 +914,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Pathing.GoalMapExtensions.html b/docs/api/GoRogue.Pathing.GoalMapExtensions.html index 0467da91..cc569716 100644 --- a/docs/api/GoRogue.Pathing.GoalMapExtensions.html +++ b/docs/api/GoRogue.Pathing.GoalMapExtensions.html @@ -115,10 +115,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GetDirectionOfMinValue(IMapView<Nullable<Double>>, Coord, AdjacencyRule)

@@ -177,10 +177,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetDirectionOfMinValue(IMapView<Nullable<Double>>, Int32, Int32, AdjacencyRule)

@@ -251,10 +251,10 @@
Returns
diff --git a/docs/api/GoRogue.Pathing.GoalState.html b/docs/api/GoRogue.Pathing.GoalState.html index 211d4ca0..7ebaf631 100644 --- a/docs/api/GoRogue.Pathing.GoalState.html +++ b/docs/api/GoRogue.Pathing.GoalState.html @@ -121,10 +121,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Pathing.Path.html b/docs/api/GoRogue.Pathing.Path.html index ab7dee93..214b0882 100644 --- a/docs/api/GoRogue.Pathing.Path.html +++ b/docs/api/GoRogue.Pathing.Path.html @@ -116,10 +116,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

Path(Path, Boolean)

@@ -161,10 +161,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

End

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Length

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LengthWithStart

@@ -254,10 +254,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Start

@@ -285,10 +285,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Steps

@@ -317,10 +317,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StepsWithStart

@@ -350,10 +350,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GetStep(Int32)

@@ -400,10 +400,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetStepWithStart(Int32)

@@ -450,10 +450,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Reverse()

@@ -466,10 +466,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -511,10 +511,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Pathing.WeightedGoalMap.html b/docs/api/GoRogue.Pathing.WeightedGoalMap.html index 6bc41dab..bc158a7f 100644 --- a/docs/api/GoRogue.Pathing.WeightedGoalMap.html +++ b/docs/api/GoRogue.Pathing.WeightedGoalMap.html @@ -129,10 +129,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedGoalMap(IMapView<Nullable<Double>>)

@@ -163,10 +163,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedGoalMap(IDictionary<IMapView<Nullable<Double>>, Double>)

@@ -197,10 +197,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedGoalMap(IEnumerable<IMapView<Nullable<Double>>>)

@@ -233,10 +233,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

Weights

The list of weighted goal maps. Can be used to add or remove goal maps, or change their weights.

@@ -270,10 +270,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -301,10 +301,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -349,10 +349,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -397,10 +397,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -450,10 +450,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -483,10 +483,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Combine()

@@ -577,10 +577,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Radius.Types.html b/docs/api/GoRogue.Radius.Types.html index 499c0276..7097b585 100644 --- a/docs/api/GoRogue.Radius.Types.html +++ b/docs/api/GoRogue.Radius.Types.html @@ -138,10 +138,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Radius.html b/docs/api/GoRogue.Radius.html index 7f219121..e2cbbebb 100644 --- a/docs/api/GoRogue.Radius.html +++ b/docs/api/GoRogue.Radius.html @@ -119,10 +119,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

CIRCLE

Radius is a circle around the center point. CIRCLE would represent movement radius in @@ -151,10 +151,10 @@

Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CUBE

Radius is a cube around the center point. Similar to SQUARE in 2d shape.

@@ -182,10 +182,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DIAMOND

Radius is a diamond around the center point. DIAMOND would represent movement radius @@ -214,10 +214,10 @@

Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OCTAHEDRON

Radius is an octahedron around the center point. Similar to DIAMOND in 2d shape.

@@ -245,10 +245,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SPHERE

Radius is a sphere around the center point. Similar to CIRCLE in 2d shape.

@@ -276,10 +276,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SQUARE

Radius is a square around the center point. SQUARE would represent movement radius in @@ -309,10 +309,10 @@

Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

Enum value representing the radius shape -- useful for using Radius types in switch @@ -342,10 +342,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Radius)

@@ -391,10 +391,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Object)

@@ -442,10 +442,10 @@
Overrides
System.Object.Equals(System.Object)
| - Improve this Doc + Improve this Doc - View Source + View Source

GetHashCode()

@@ -475,10 +475,10 @@
Overrides
System.Object.GetHashCode()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToRadius(Radius.Types)

@@ -525,10 +525,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -561,10 +561,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Radius, Radius)

@@ -615,10 +615,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Radius to AdjacencyRule)

@@ -668,10 +668,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Radius to Distance)

@@ -721,10 +721,10 @@
Rem
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Radius, Radius)

@@ -789,10 +789,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.RadiusAreaProvider.html b/docs/api/GoRogue.RadiusAreaProvider.html index f597daee..183ebb7d 100644 --- a/docs/api/GoRogue.RadiusAreaProvider.html +++ b/docs/api/GoRogue.RadiusAreaProvider.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

RadiusAreaProvider(Coord, Int32, Distance)

@@ -173,10 +173,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RadiusAreaProvider(Coord, Int32, Distance, Rectangle)

@@ -226,10 +226,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RadiusAreaProvider(Int32, Int32, Int32, Distance)

@@ -279,10 +279,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RadiusAreaProvider(Int32, Int32, Int32, Distance, Rectangle)

@@ -340,10 +340,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Bounds

@@ -372,10 +372,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Center

@@ -403,10 +403,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CenterX

@@ -434,10 +434,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CenterY

@@ -465,10 +465,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DistanceCalc

@@ -497,10 +497,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Radius

@@ -535,10 +535,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AsReadOnly()

@@ -567,10 +567,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

CalculatePositions()

@@ -606,10 +606,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(RadiusAreaProvider)

@@ -655,10 +655,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Object)

@@ -706,10 +706,10 @@
Overrides
System.Object.Equals(System.Object)
| - Improve this Doc + Improve this Doc - View Source + View Source

GetHashCode()

@@ -739,10 +739,10 @@
Overrides
System.Object.GetHashCode()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -775,10 +775,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(RadiusAreaProvider, RadiusAreaProvider)

@@ -829,10 +829,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(RadiusAreaProvider, RadiusAreaProvider)

@@ -900,10 +900,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Random.DiscreteConverter-1.html b/docs/api/GoRogue.Random.DiscreteConverter-1.html index 8674e4c6..bd14c466 100644 --- a/docs/api/GoRogue.Random.DiscreteConverter-1.html +++ b/docs/api/GoRogue.Random.DiscreteConverter-1.html @@ -142,10 +142,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

DiscreteConverter(T)

@@ -178,10 +178,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CanReset

@@ -210,10 +210,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContinuousDistribution

@@ -241,10 +241,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Generator

@@ -272,10 +272,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -303,10 +303,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Mean

@@ -334,10 +334,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Median

@@ -365,10 +365,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -396,10 +396,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Mode

@@ -427,10 +427,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Variance

@@ -460,10 +460,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Next()

@@ -494,10 +494,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextDouble()

@@ -526,10 +526,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Reset()

@@ -576,10 +576,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Random.DistributionHelpers.html b/docs/api/GoRogue.Random.DistributionHelpers.html index a2b9b83b..2fa65105 100644 --- a/docs/api/GoRogue.Random.DistributionHelpers.html +++ b/docs/api/GoRogue.Random.DistributionHelpers.html @@ -115,10 +115,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

CreateNormalDistribution(Double, Double, Double)

@@ -182,10 +182,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

CreateNormalDistribution(UInt32, Double, Double, Double)

@@ -255,10 +255,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

CreateNormalDistribution(IGenerator, Double, Double, Double)

@@ -334,10 +334,10 @@
Returns
diff --git a/docs/api/GoRogue.Random.KnownSeriesGenerator.html b/docs/api/GoRogue.Random.KnownSeriesGenerator.html index 74a0a44f..ef9a4606 100644 --- a/docs/api/GoRogue.Random.KnownSeriesGenerator.html +++ b/docs/api/GoRogue.Random.KnownSeriesGenerator.html @@ -124,10 +124,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

KnownSeriesGenerator(IEnumerable<Int32>, IEnumerable<UInt32>, IEnumerable<Double>, IEnumerable<Boolean>, IEnumerable<Byte>)

@@ -182,10 +182,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CanReset

@@ -214,10 +214,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Seed

@@ -247,10 +247,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Next()

@@ -280,10 +280,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Next(Int32)

@@ -331,10 +331,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Next(Int32, Int32)

@@ -388,10 +388,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextBoolean()

@@ -420,10 +420,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextBytes(Byte[])

@@ -454,10 +454,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

NextDouble()

@@ -487,10 +487,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextDouble(Double)

@@ -538,10 +538,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextDouble(Double, Double)

@@ -595,10 +595,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextInclusiveMaxValue()

@@ -627,10 +627,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUInt()

@@ -660,10 +660,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUInt(UInt32)

@@ -711,10 +711,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUInt(UInt32, UInt32)

@@ -768,10 +768,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUIntExclusiveMaxValue()

@@ -801,10 +801,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUIntInclusiveMaxValue()

@@ -833,10 +833,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Reset()

@@ -866,10 +866,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Reset(UInt32)

@@ -931,10 +931,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Random.MaxRandom.html b/docs/api/GoRogue.Random.MaxRandom.html index b848ebca..84eef271 100644 --- a/docs/api/GoRogue.Random.MaxRandom.html +++ b/docs/api/GoRogue.Random.MaxRandom.html @@ -121,10 +121,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CanReset

@@ -153,10 +153,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Seed

@@ -186,10 +186,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Next()

@@ -218,10 +218,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Next(Int32)

@@ -268,10 +268,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Next(Int32, Int32)

@@ -324,10 +324,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextBoolean()

@@ -356,10 +356,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextBytes(Byte[])

@@ -390,10 +390,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

NextDouble()

@@ -425,10 +425,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

NextDouble(Double)

@@ -475,10 +475,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextDouble(Double, Double)

@@ -532,10 +532,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextInclusiveMaxValue()

@@ -564,10 +564,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUInt()

@@ -596,10 +596,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUInt(UInt32)

@@ -646,10 +646,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUInt(UInt32, UInt32)

@@ -702,10 +702,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUIntExclusiveMaxValue()

@@ -734,10 +734,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUIntInclusiveMaxValue()

@@ -766,10 +766,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Reset()

@@ -798,10 +798,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Reset(UInt32)

@@ -862,10 +862,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Random.MinRandom.html b/docs/api/GoRogue.Random.MinRandom.html index 9d2b8b2e..807f6096 100644 --- a/docs/api/GoRogue.Random.MinRandom.html +++ b/docs/api/GoRogue.Random.MinRandom.html @@ -121,10 +121,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CanReset

@@ -153,10 +153,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Seed

@@ -186,10 +186,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

Next()

@@ -218,10 +218,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Next(Int32)

@@ -267,10 +267,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Next(Int32, Int32)

@@ -324,10 +324,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextBoolean()

@@ -356,10 +356,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextBytes(Byte[])

@@ -390,10 +390,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

NextDouble()

@@ -422,10 +422,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextDouble(Double)

@@ -473,10 +473,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextDouble(Double, Double)

@@ -530,10 +530,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextInclusiveMaxValue()

@@ -562,10 +562,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUInt()

@@ -594,10 +594,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUInt(UInt32)

@@ -644,10 +644,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUInt(UInt32, UInt32)

@@ -700,10 +700,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUIntExclusiveMaxValue()

@@ -732,10 +732,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

NextUIntInclusiveMaxValue()

@@ -764,10 +764,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Reset()

@@ -796,10 +796,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Reset(UInt32)

@@ -860,10 +860,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Random.SingletonRandom.html b/docs/api/GoRogue.Random.SingletonRandom.html index 49c9d068..280e7fc9 100644 --- a/docs/api/GoRogue.Random.SingletonRandom.html +++ b/docs/api/GoRogue.Random.SingletonRandom.html @@ -117,10 +117,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DefaultRNG

Settable field that specifies what Troschuetz.Random.IGenerator instance should be considered the default @@ -154,10 +154,10 @@

Field Value
diff --git a/docs/api/GoRogue.Rectangle.html b/docs/api/GoRogue.Rectangle.html index b0786cf6..760ebd1b 100644 --- a/docs/api/GoRogue.Rectangle.html +++ b/docs/api/GoRogue.Rectangle.html @@ -112,10 +112,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

Rectangle(Coord, Coord)

@@ -152,10 +152,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Rectangle(Coord, Int32, Int32)

@@ -198,10 +198,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Rectangle(Int32, Int32, Int32, Int32)

@@ -252,10 +252,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

EMPTY

The empty rectangle. Has origin of (0, 0) with 0 width and height.

@@ -283,10 +283,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Height

The height of the rectangle.

@@ -313,10 +313,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

The width of the rectangle.

@@ -343,10 +343,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

X

X-coordinate of position of the rectangle.

@@ -373,10 +373,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Y

Y-coordinate of position of the rectangle.

@@ -405,10 +405,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Area

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Center

@@ -468,10 +468,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsEmpty

@@ -499,10 +499,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxExtent

@@ -530,10 +530,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxExtentX

@@ -561,10 +561,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxExtentY

@@ -592,10 +592,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinExtent

@@ -625,10 +625,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinExtentX

@@ -658,10 +658,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinExtentY

@@ -691,10 +691,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Perimeter

@@ -723,10 +723,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Position

@@ -754,10 +754,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Size

@@ -787,10 +787,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ChangeHeight(Int32)

@@ -838,10 +838,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ChangeSize(Coord)

@@ -890,10 +890,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ChangeSize(Int32, Int32)

@@ -947,10 +947,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ChangeWidth(Int32)

@@ -998,10 +998,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Coord)

@@ -1048,10 +1048,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Rectangle)

@@ -1099,10 +1099,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Contains(Int32, Int32)

@@ -1155,10 +1155,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Deconstruct(out Int32, out Int32, out Int32, out Int32)

@@ -1203,10 +1203,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Rectangle)

@@ -1253,10 +1253,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals(Object)

@@ -1304,10 +1304,10 @@
Overrides
System.ValueType.Equals(System.Object)
| - Improve this Doc + Improve this Doc - View Source + View Source

Equals((Int32 x, Int32 y, Int32 width, Int32 height))

@@ -1354,10 +1354,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Expand(Int32, Int32)

@@ -1411,10 +1411,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetDifference(Rectangle, Rectangle)

@@ -1467,10 +1467,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetExactUnion(Rectangle, Rectangle)

@@ -1522,10 +1522,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetHashCode()

@@ -1556,10 +1556,10 @@
Overrides
System.ValueType.GetHashCode()
| - Improve this Doc + Improve this Doc - View Source + View Source

GetIntersection(Rectangle, Rectangle)

@@ -1612,10 +1612,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetUnion(Rectangle, Rectangle)

@@ -1668,10 +1668,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Intersects(Rectangle)

@@ -1718,10 +1718,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxXPositions()

@@ -1750,10 +1750,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxYPositions()

@@ -1782,10 +1782,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

MinXPositions()

@@ -1814,10 +1814,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

MinYPositions()

@@ -1846,10 +1846,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

PerimeterPositions()

@@ -1878,10 +1878,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Positions()

@@ -1910,10 +1910,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

PositionsOnSide(Direction)

@@ -1961,10 +1961,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition(Func<Coord, Boolean>, IGenerator)

@@ -2021,10 +2021,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition(Func<Rectangle, Coord, Boolean>, IGenerator)

@@ -2081,10 +2081,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomPosition(IGenerator)

@@ -2131,10 +2131,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -2166,10 +2166,10 @@
Overrides
System.ValueType.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

Translate(Coord)

@@ -2217,10 +2217,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Translate(Direction)

@@ -2267,10 +2267,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Translate(Int32, Int32)

@@ -2324,10 +2324,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

TranslateX(Int32)

@@ -2374,10 +2374,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

TranslateY(Int32)

@@ -2424,10 +2424,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithCenter(Coord)

@@ -2476,10 +2476,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithCenter(Int32, Int32)

@@ -2534,10 +2534,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithExtents(Coord, Coord)

@@ -2591,10 +2591,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithExtents(Int32, Int32, Int32, Int32)

@@ -2660,10 +2660,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithHeight(Int32)

@@ -2711,10 +2711,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithMaxExtent(Coord)

@@ -2762,10 +2762,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithMaxExtent(Int32, Int32)

@@ -2819,10 +2819,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithMaxExtentX(Int32)

@@ -2870,10 +2870,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithMaxExtentY(Int32)

@@ -2921,10 +2921,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithMinExtent(Coord)

@@ -2972,10 +2972,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithMinExtent(Int32, Int32)

@@ -3029,10 +3029,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithMinExtentX(Int32)

@@ -3080,10 +3080,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithMinExtentY(Int32)

@@ -3131,10 +3131,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithPosition(Coord)

@@ -3181,10 +3181,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithPosition(Int32, Int32)

@@ -3237,10 +3237,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithPositionAndSize(Int32, Int32, Int32, Int32)

@@ -3306,10 +3306,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithPostionAndSize(Coord, Coord)

@@ -3363,10 +3363,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithRadius(Coord, Int32, Int32)

@@ -3427,10 +3427,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithRadius(Int32, Int32, Int32, Int32)

@@ -3497,10 +3497,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithSize(Coord)

@@ -3548,10 +3548,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithSize(Int32, Int32)

@@ -3605,10 +3605,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithWidth(Int32)

@@ -3656,10 +3656,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithX(Int32)

@@ -3706,10 +3706,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

WithY(Int32)

@@ -3758,10 +3758,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Rectangle, Rectangle)

@@ -3812,10 +3812,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Rectangle, Rectangle)

@@ -3866,10 +3866,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Rectangle, Rectangle)

@@ -3920,10 +3920,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Rectangle, RectangleF)

@@ -3974,10 +3974,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Rectangle, (Int32 x, Int32 y, Int32 width, Int32 height))

@@ -4028,10 +4028,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Rectangle, Rectangle)

@@ -4082,10 +4082,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(Rectangle, Rectangle)

@@ -4136,10 +4136,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality(RectangleF, Rectangle)

@@ -4190,10 +4190,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Equality((Int32 x, Int32 y, Int32 width, Int32 height), Rectangle)

@@ -4244,10 +4244,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Rectangle to Rectangle)

@@ -4292,10 +4292,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Rectangle to Rectangle)

@@ -4340,10 +4340,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Rectangle to RectangleF)

@@ -4388,10 +4388,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Rectangle to (Int32 x, Int32 y, Int32 width, Int32 height))

@@ -4436,10 +4436,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Rectangle to Rectangle)

@@ -4484,10 +4484,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Rectangle to Rectangle)

@@ -4532,10 +4532,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit((Int32 x, Int32 y, Int32 width, Int32 height) to Rectangle)

@@ -4580,10 +4580,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Rectangle, Rectangle)

@@ -4634,10 +4634,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Rectangle, Rectangle)

@@ -4688,10 +4688,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Rectangle, Rectangle)

@@ -4742,10 +4742,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Rectangle, RectangleF)

@@ -4796,10 +4796,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Rectangle, (Int32 x, Int32 y, Int32 width, Int32 height))

@@ -4850,10 +4850,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Rectangle, Rectangle)

@@ -4904,10 +4904,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(Rectangle, Rectangle)

@@ -4958,10 +4958,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality(RectangleF, Rectangle)

@@ -5012,10 +5012,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Inequality((Int32 x, Int32 y, Int32 width, Int32 height), Rectangle)

@@ -5083,10 +5083,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Reflection.html b/docs/api/GoRogue.Reflection.html index a31422b8..8a723b0a 100644 --- a/docs/api/GoRogue.Reflection.html +++ b/docs/api/GoRogue.Reflection.html @@ -116,10 +116,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

GetRuntimeTypeTree(Object)

@@ -169,10 +169,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

GetTypeTree(Type)

@@ -225,10 +225,10 @@
Remarks
| - Improve this Doc + Improve this Doc - View Source + View Source

GetTypeTree<T>()

@@ -285,10 +285,10 @@
Remarks
diff --git a/docs/api/GoRogue.SenseMapping.IReadOnlySenseMap.html b/docs/api/GoRogue.SenseMapping.IReadOnlySenseMap.html index 96f963ce..157ad232 100644 --- a/docs/api/GoRogue.SenseMapping.IReadOnlySenseMap.html +++ b/docs/api/GoRogue.SenseMapping.IReadOnlySenseMap.html @@ -107,10 +107,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentSenseMap

@@ -139,10 +139,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NewlyInSenseMap

@@ -172,10 +172,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NewlyOutOfSenseMap

@@ -205,10 +205,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SenseSources

@@ -293,10 +293,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.SenseMapping.SenseMap.html b/docs/api/GoRogue.SenseMapping.SenseMap.html index 15d10daf..d8672b79 100644 --- a/docs/api/GoRogue.SenseMapping.SenseMap.html +++ b/docs/api/GoRogue.SenseMapping.SenseMap.html @@ -139,10 +139,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

SenseMap(IMapView<Double>)

@@ -175,10 +175,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentSenseMap

@@ -207,10 +207,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -238,10 +238,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Coord]

@@ -288,10 +288,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -338,10 +338,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32, Int32]

@@ -394,10 +394,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NewlyInSenseMap

@@ -427,10 +427,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NewlyOutOfSenseMap

@@ -460,10 +460,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SenseSources

@@ -493,10 +493,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -526,10 +526,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AddSenseSource(SenseSource)

@@ -562,10 +562,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

AsReadOnly()

@@ -594,10 +594,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

Calculate()

@@ -611,10 +611,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

GetEnumerator()

@@ -643,10 +643,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

RemoveSenseSource(SenseSource)

@@ -682,10 +682,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -719,10 +719,10 @@
Overrides
System.Object.ToString()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Char, Char, Char)

@@ -781,10 +781,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString(Int32)

@@ -834,10 +834,10 @@

Explicit Interface Implementations

| - Improve this Doc + Improve this Doc - View Source + View Source

IEnumerable.GetEnumerator()

@@ -934,10 +934,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.SenseMapping.SenseSource.html b/docs/api/GoRogue.SenseMapping.SenseSource.html index 2b7bca79..8e6917ec 100644 --- a/docs/api/GoRogue.SenseMapping.SenseSource.html +++ b/docs/api/GoRogue.SenseMapping.SenseSource.html @@ -120,10 +120,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

SenseSource(SourceType, Coord, Double, Distance, Double)

@@ -180,10 +180,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

SenseSource(SourceType, Coord, Double, Distance, Double, Double, Double)

@@ -254,10 +254,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

SenseSource(SourceType, Int32, Int32, Double, Distance, Double)

@@ -320,10 +320,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

SenseSource(SourceType, Int32, Int32, Double, Distance, Double, Double, Double)

@@ -402,10 +402,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Angle

@@ -435,10 +435,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DistanceCalc

@@ -467,10 +467,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Enabled

@@ -499,10 +499,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Intensity

@@ -530,10 +530,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsAngleRestricted

@@ -561,10 +561,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Position

@@ -592,10 +592,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Radius

@@ -625,10 +625,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Span

@@ -657,10 +657,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -690,10 +690,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -734,10 +734,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.SenseMapping.SourceType.html b/docs/api/GoRogue.SenseMapping.SourceType.html index a1f2e4b1..63e9e826 100644 --- a/docs/api/GoRogue.SenseMapping.SourceType.html +++ b/docs/api/GoRogue.SenseMapping.SourceType.html @@ -136,10 +136,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.SpatialMap-1.html b/docs/api/GoRogue.SpatialMap-1.html index e1555209..31330060 100644 --- a/docs/api/GoRogue.SpatialMap-1.html +++ b/docs/api/GoRogue.SpatialMap-1.html @@ -232,10 +232,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

SpatialMap(Int32)

@@ -293,10 +293,10 @@

Extension Methods

diff --git a/docs/api/GoRogue.Utility.html b/docs/api/GoRogue.Utility.html index aba4861f..04e4d058 100644 --- a/docs/api/GoRogue.Utility.html +++ b/docs/api/GoRogue.Utility.html @@ -116,10 +116,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AsReadOnly<K, V>(IDictionary<K, V>)

@@ -187,10 +187,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtendToString<T>(T[,], String, String, Func<T, String>, String, String, String, String)

@@ -294,10 +294,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtendToString<T>(IEnumerable<T>, String, Func<T, String>, String, String)

@@ -390,10 +390,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtendToString<T>(ISet<T>, String, Func<T, String>, String, String)

@@ -486,10 +486,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtendToString<K, V>(IDictionary<K, V>, String, Func<K, String>, Func<V, String>, String, String, String)

@@ -598,10 +598,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtendToStringGrid<T>(T[,], Int32, String, String, Func<T, String>, String, String, String, String)

@@ -718,10 +718,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtendToStringGrid<T>(T[,], String, String, Func<T, String>, String, String, String, String)

@@ -832,10 +832,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

FisherYatesShuffle<T>(IList<T>, IGenerator)

@@ -888,10 +888,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Multiply(String, Int32)

@@ -943,10 +943,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomIndex<T>(IReadOnlyList<T>, Func<Int32, Boolean>, IGenerator)

@@ -1022,10 +1022,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomIndex<T>(IReadOnlyList<T>, IGenerator)

@@ -1094,10 +1094,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomItem<T>(IReadOnlyList<T>, Func<T, Boolean>, IGenerator)

@@ -1173,10 +1173,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

RandomItem<T>(IReadOnlyList<T>, IGenerator)

@@ -1245,10 +1245,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Swap<T>(ref T, ref T)

@@ -1298,10 +1298,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Yield<T>(T)

@@ -1362,10 +1362,10 @@
Type Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Yield<T>(T[])

@@ -1433,10 +1433,10 @@
Type Parameters
diff --git a/docs/api/toc.html b/docs/api/toc.html index 5ef52ffd..55b988f4 100644 --- a/docs/api/toc.html +++ b/docs/api/toc.html @@ -222,6 +222,34 @@ +
  • + + GoRogue.Factory + + +
  • GoRogue.GameFramework diff --git a/docs/manifest.json b/docs/manifest.json index cca449d8..6668fa2b 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -9,7 +9,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.AdjacencyRule.Types.html", - "hash": "Z1+BDkcmTkjA1dC8FTvFXg==" + "hash": "fXKSJ0icBrt2hOIodj1ZAQ==" } }, "is_incremental": false, @@ -21,7 +21,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.AdjacencyRule.html", - "hash": "423a3ezF37Fpx+ON0QBhpA==" + "hash": "aULrHQADqYRqwc5Z1FlrHw==" } }, "is_incremental": false, @@ -33,7 +33,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.AdvancedLayeredSpatialMap-1.html", - "hash": "GdUfDTWWe99+IJeeqpNnaw==" + "hash": "Q0rGWBg9YkKjUHoBTPoU8Q==" } }, "is_incremental": false, @@ -45,7 +45,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.AdvancedMultiSpatialMap-1.html", - "hash": "cpQd2og/lJMdYGx/Ob7/kA==" + "hash": "x4D9u5r0rJLJJ2PS9parqQ==" } }, "is_incremental": false, @@ -57,7 +57,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.AdvancedSpatialMap-1.html", - "hash": "4kFgKi5MEiQK4V7LJt98Rg==" + "hash": "obpaLm91MHnBaTQ4PKXFjg==" } }, "is_incremental": false, @@ -69,7 +69,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.BoundedRectangle.html", - "hash": "cXOrf5XnF6tj3UcDMPvndQ==" + "hash": "uHLF5SNTnEFYIHgiKdQtKg==" } }, "is_incremental": false, @@ -81,7 +81,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.ComponentContainer.html", - "hash": "4XZwrYs4VFLDQm/W7cjFiQ==" + "hash": "1momVE1JBha/y/HmoxdMNw==" } }, "is_incremental": false, @@ -93,7 +93,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Coord.html", - "hash": "l51kqrqTBYX4zg3se+yy7A==" + "hash": "gnFfQQJc9AACZIPRo1YSCA==" } }, "is_incremental": false, @@ -105,7 +105,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Dice.html", - "hash": "hymBg1TVcdtY2BbPC2T1jg==" + "hash": "MCiTt4+hZF2AllBth3hdTQ==" } }, "is_incremental": false, @@ -117,7 +117,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.DiceExpression.html", - "hash": "icfZ5/y2mqCUwT3TYO867Q==" + "hash": "mF5KFZDEf8KXgNcFB1fYRA==" } }, "is_incremental": false, @@ -129,7 +129,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Exceptions.ImpossibleDieException.html", - "hash": "OcixblV66dFkWM1M/WH3VQ==" + "hash": "ugnzCa27Haycz5T8QrneCQ==" } }, "is_incremental": false, @@ -141,7 +141,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Exceptions.InvalidChooseException.html", - "hash": "tR7AGhfFxLIOOawXviw0Cg==" + "hash": "OSilkY8ySDp+rVXdjFLa7A==" } }, "is_incremental": false, @@ -153,7 +153,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Exceptions.InvalidMultiplicityException.html", - "hash": "lhdhZpa0IjUuqcp3GHTRmw==" + "hash": "Gue1lafZsXVsK+dGSVZ9aw==" } }, "is_incremental": false, @@ -165,7 +165,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Exceptions.InvalidSyntaxException.html", - "hash": "tO2GdvzH6ufJge4hrmF6YQ==" + "hash": "Fwxu/p+plXdcO4w0Dkzy2Q==" } }, "is_incremental": false, @@ -189,7 +189,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.IDiceExpression.html", - "hash": "sTr+npKSb7NnAtwVHC6n9Q==" + "hash": "DjPww4rwq5vyUcbPp2WvRg==" } }, "is_incremental": false, @@ -201,7 +201,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.IParser.html", - "hash": "Bt9V9NuzE06gPZDTsfKdEg==" + "hash": "dcxV7CKApq4gPCMWLkCmKw==" } }, "is_incremental": false, @@ -213,7 +213,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Parser.html", - "hash": "FGPTQpLdUOPZMaYuD0wLJA==" + "hash": "Kk47IWDtLp0fuFjjo9MyGA==" } }, "is_incremental": false, @@ -225,7 +225,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Terms.AddTerm.html", - "hash": "+L/8DdAWNdpRM8cboJJjdQ==" + "hash": "6kkHSz6bDo9CTAcwodbx8Q==" } }, "is_incremental": false, @@ -237,7 +237,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Terms.ConstantTerm.html", - "hash": "KWGyvI3Rtk8ij5QgNqijsw==" + "hash": "L73vFnJ1WWECzX8ctZizmQ==" } }, "is_incremental": false, @@ -249,7 +249,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Terms.DiceTerm.html", - "hash": "aDk1Z659767GidFhRoGOFg==" + "hash": "OhRHORrzZcg6FEDIlBUMVg==" } }, "is_incremental": false, @@ -261,7 +261,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Terms.DivideTerm.html", - "hash": "X4PTRi0d/SUzT0OPMKEbCA==" + "hash": "fRXYj45DYyYNGw/qR8mZBw==" } }, "is_incremental": false, @@ -273,7 +273,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Terms.ITerm.html", - "hash": "vDqccw0/r61zXQh6dLuBJw==" + "hash": "9DgjcozkdQc3R45Q9xlqMw==" } }, "is_incremental": false, @@ -285,7 +285,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Terms.KeepTerm.html", - "hash": "OJCKzOwhsIbItrHJfviBbg==" + "hash": "pzPQ0od0gieg3tjCzmNeiA==" } }, "is_incremental": false, @@ -297,7 +297,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Terms.MultiplyTerm.html", - "hash": "ukqcCmhusJKtpY0DWVaA8g==" + "hash": "cbIzYxS/IQpXHgKz5vKMLQ==" } }, "is_incremental": false, @@ -309,7 +309,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DiceNotation.Terms.SubtractTerm.html", - "hash": "7CPLrfsfX4OX8X6bxPZxZA==" + "hash": "eTMsvC9CgIHyvTQ7f7+Rew==" } }, "is_incremental": false, @@ -345,7 +345,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Direction.Types.html", - "hash": "k8gJL0XT1PQsLx2nG9KeWg==" + "hash": "IqFZnuAjuiBmPsnaSXcJJQ==" } }, "is_incremental": false, @@ -357,7 +357,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Direction.html", - "hash": "IFPuwoxfDgRkvb0B4HtFNQ==" + "hash": "tLkL2YdOH5bgSZVr7adacg==" } }, "is_incremental": false, @@ -369,7 +369,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.DisjointSet.html", - "hash": "rwaRIvRmcYEhDcyCWGZMcg==" + "hash": "NjZmrZ5A26Icrd15wzGmcQ==" } }, "is_incremental": false, @@ -381,7 +381,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Distance.Types.html", - "hash": "JmZhDlcrCXXVus3pKCyPug==" + "hash": "FAX8rw1hldeBe6pBviozig==" } }, "is_incremental": false, @@ -393,7 +393,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Distance.html", - "hash": "VFk5ConkoAwBpa4h7kZ7OA==" + "hash": "2CtU5xzFmUjy5KnDf7h6Qw==" } }, "is_incremental": false, @@ -405,7 +405,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Effect-1.html", - "hash": "e+L+zd3co/Rx7ZGoupnIQg==" + "hash": "m0DdZdoHF3ro+tjJRTtxrw==" } }, "is_incremental": false, @@ -417,7 +417,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.EffectArgs.html", - "hash": "WSZiiBfwmO9HlA7VW9KEBg==" + "hash": "UhbeN9PqT22vOy/4yurx2g==" } }, "is_incremental": false, @@ -429,7 +429,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.EffectTrigger-1.html", - "hash": "U9NaEAwV5+rXDFWbbaiFPw==" + "hash": "JU7xZXWatnIkGCubtCBdXg==" } }, "is_incremental": false, @@ -441,7 +441,103 @@ "output": { ".html": { "relative_path": "api/GoRogue.FOV.html", - "hash": "Gx+2XrJJN9SEekufbO7RXQ==" + "hash": "CSavKz57Zouc+We8YulsEg==" + } + }, + "is_incremental": false, + "version": "" + }, + { + "type": "ManagedReference", + "source_relative_path": "api/GoRogue.Factory.BlueprintConfig.yml", + "output": { + ".html": { + "relative_path": "api/GoRogue.Factory.BlueprintConfig.html", + "hash": "5CL6zZqBu152NPBNZ6Duew==" + } + }, + "is_incremental": false, + "version": "" + }, + { + "type": "ManagedReference", + "source_relative_path": "api/GoRogue.Factory.Factory-1.yml", + "output": { + ".html": { + "relative_path": "api/GoRogue.Factory.Factory-1.html", + "hash": "048hCKSgpT2d87t6tqdlEg==" + } + }, + "is_incremental": false, + "version": "" + }, + { + "type": "ManagedReference", + "source_relative_path": "api/GoRogue.Factory.Factory-2.yml", + "output": { + ".html": { + "relative_path": "api/GoRogue.Factory.Factory-2.html", + "hash": "aBaD+Svqbo1UliXdscfMmg==" + } + }, + "is_incremental": false, + "version": "" + }, + { + "type": "ManagedReference", + "source_relative_path": "api/GoRogue.Factory.IBlueprint-2.yml", + "output": { + ".html": { + "relative_path": "api/GoRogue.Factory.IBlueprint-2.html", + "hash": "Ru6t9TkPufJFzAthCQBhGg==" + } + }, + "is_incremental": false, + "version": "" + }, + { + "type": "ManagedReference", + "source_relative_path": "api/GoRogue.Factory.IFactoryObject.yml", + "output": { + ".html": { + "relative_path": "api/GoRogue.Factory.IFactoryObject.html", + "hash": "gFbbZvsuVuzOd7Lh7/N9wg==" + } + }, + "is_incremental": false, + "version": "" + }, + { + "type": "ManagedReference", + "source_relative_path": "api/GoRogue.Factory.ItemNotDefinedException.yml", + "output": { + ".html": { + "relative_path": "api/GoRogue.Factory.ItemNotDefinedException.html", + "hash": "Fp7CgzLSi68twK/fTglKTQ==" + } + }, + "is_incremental": false, + "version": "" + }, + { + "type": "ManagedReference", + "source_relative_path": "api/GoRogue.Factory.SimpleBlueprint-1.yml", + "output": { + ".html": { + "relative_path": "api/GoRogue.Factory.SimpleBlueprint-1.html", + "hash": "VO0nPHmvPLXaU37YyXm6uQ==" + } + }, + "is_incremental": false, + "version": "" + }, + { + "type": "ManagedReference", + "source_relative_path": "api/GoRogue.Factory.yml", + "output": { + ".html": { + "relative_path": "api/GoRogue.Factory.html", + "hash": "wUdkZPT3nSEUgODVPVT7+g==" } }, "is_incremental": false, @@ -453,7 +549,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.GameFramework.Components.IGameObjectComponent.html", - "hash": "RDo9RQA+F5i909YYxCVk5A==" + "hash": "lR2MWqlNXJG+3xBhUVb1pA==" } }, "is_incremental": false, @@ -477,7 +573,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.GameFramework.GameObject.html", - "hash": "emUf4OwqA74AEcerqSNflQ==" + "hash": "/KAq81gN8qSLi8l9kekGBw==" } }, "is_incremental": false, @@ -489,7 +585,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.GameFramework.IGameObject.html", - "hash": "k9bUsUp+1o1hZOujNpy9fw==" + "hash": "jYmswwYtRZF9Cx9GcwdiTg==" } }, "is_incremental": false, @@ -501,7 +597,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.GameFramework.Map.html", - "hash": "U7QglE+cTJaGH6WnKy4Ogw==" + "hash": "l6ShN1jD05a658ILUdNgbg==" } }, "is_incremental": false, @@ -525,7 +621,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.IDGenerator.html", - "hash": "S/S7DrjX/DQv/V7rlgQM7Q==" + "hash": "z85qt+QU14MS/tIDnrJm3w==" } }, "is_incremental": false, @@ -537,7 +633,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.IHasComponents.html", - "hash": "heB3X4AWqqv01lk0srmAJw==" + "hash": "UieB+CaIsKoo2gWEpzBSZA==" } }, "is_incremental": false, @@ -549,7 +645,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.IHasID.html", - "hash": "qcJt3APbQlAwGoYMxFkJzA==" + "hash": "dalfnThpPWRWTv80vDwmnQ==" } }, "is_incremental": false, @@ -561,7 +657,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.IHasLayer.html", - "hash": "ErQ4xhFn77WyAe+BlC/58A==" + "hash": "wRd43nPG4vrOfU8YdWFwJw==" } }, "is_incremental": false, @@ -573,7 +669,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.IReadOnlyDisjointSet.html", - "hash": "rjH3CSfc40eVTW2euv9wEg==" + "hash": "EdgtyHo/Cn8w63iNyOWu+w==" } }, "is_incremental": false, @@ -585,7 +681,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.IReadOnlyFOV.html", - "hash": "U5L9FR8NgrxF41746pZtyg==" + "hash": "aJUILspwyvuc2A6oZaDuxw==" } }, "is_incremental": false, @@ -597,7 +693,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.IReadOnlyLayeredSpatialMap-1.html", - "hash": "Bf2vSmkn/wz/W1qA1bNrIw==" + "hash": "iP+Pyed24XOK+lk11d5l9g==" } }, "is_incremental": false, @@ -609,7 +705,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.IReadOnlyRadiusAreaProvider.html", - "hash": "Kt6xk9WEfU5eDH5I+Bu3Hg==" + "hash": "LKEIiEXME5Hb0HWJ0Sg4+g==" } }, "is_incremental": false, @@ -621,7 +717,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.IReadOnlySpatialMap-1.html", - "hash": "rR0DEMSCO7Ww/++EgUl2kg==" + "hash": "BBtykpYcSYaUegRsvWaCFw==" } }, "is_incremental": false, @@ -633,7 +729,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.ISortedComponent.html", - "hash": "gYL4ChSXBZmXJDP5ojBfdg==" + "hash": "Bh5CdHkGp1t3XvMkD21PDg==" } }, "is_incremental": false, @@ -645,7 +741,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.ISpatialMap-1.html", - "hash": "q0g+1yJigJEoQVppr53BYw==" + "hash": "3MxG29zJ9irp6ZWDVY4JyA==" } }, "is_incremental": false, @@ -657,7 +753,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.ISpatialTuple-1.html", - "hash": "XpvYp3a7dMFjk3ktnHJVpg==" + "hash": "0YWMjvEAoIjT6rJKBUFxKA==" } }, "is_incremental": false, @@ -669,7 +765,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.ItemEventArgs-1.html", - "hash": "dFPdoP6SLD9U01zguW19+Q==" + "hash": "MGznfu98e0efusVy/G8gAQ==" } }, "is_incremental": false, @@ -681,7 +777,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.ItemMovedEventArgs-1.html", - "hash": "O7nwHNWPlHTITQ80TBnH4w==" + "hash": "VFKe+UW68w8KlvX4//Gx5g==" } }, "is_incremental": false, @@ -693,7 +789,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.LayerMasker.html", - "hash": "P5z1RMR9a3+UCl7okEoPZA==" + "hash": "55PX7creWqY3qQ9T8Oae5g==" } }, "is_incremental": false, @@ -705,7 +801,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.LayeredSpatialMap-1.html", - "hash": "Y1EvN0EUx6nKuREa7xkXww==" + "hash": "kuFzhbD3pFyZbQqNenYdRg==" } }, "is_incremental": false, @@ -717,7 +813,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Lines.Algorithm.html", - "hash": "y5zQEFoWV6RkpG80wcHJZA==" + "hash": "3Ll3wPZK+jUK5uCXa9s8yw==" } }, "is_incremental": false, @@ -729,7 +825,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Lines.html", - "hash": "RXUgw+Z4XT06XA45Uf3VRw==" + "hash": "qmcdEHeuhTQfGIrfkbQKWA==" } }, "is_incremental": false, @@ -741,7 +837,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Connectors.CenterBoundsConnectionPointSelector.html", - "hash": "axpOun9R8iPSmDDDZCBGfA==" + "hash": "p1sHEk0yDrd3Y64hQGXEFw==" } }, "is_incremental": false, @@ -753,7 +849,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Connectors.ClosestConnectionPointSelector.html", - "hash": "2S96EIjw7hAoe1yn1fXzaw==" + "hash": "CuReyLBjRTWn1NeEXlnvzA==" } }, "is_incremental": false, @@ -765,7 +861,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Connectors.ClosestMapAreaConnector.html", - "hash": "muNSBlSqUax/h9uw6q5sag==" + "hash": "zGhsfo+vlV0G2Kg+ICVK7Q==" } }, "is_incremental": false, @@ -777,7 +873,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Connectors.DeadEndTrimmer.html", - "hash": "fR7gNwnJA56soiociHITrA==" + "hash": "RN5OsH2atsrW8wbaZbUp4A==" } }, "is_incremental": false, @@ -789,7 +885,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Connectors.DirectLineTunnelCreator.html", - "hash": "26u/asNWLHE+xnsdMkpLdg==" + "hash": "NJ4gL5LfUrmRbuS2NbpDew==" } }, "is_incremental": false, @@ -801,7 +897,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Connectors.HorizontalVerticalTunnelCreator.html", - "hash": "c70ys0cJU+4WLfbeFc8KUw==" + "hash": "dXn9cpU1DciCZ6021f9t7g==" } }, "is_incremental": false, @@ -813,7 +909,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Connectors.IAreaConnectionPointSelector.html", - "hash": "zOLGFzzkbpC8y6HqU5O4Ow==" + "hash": "yNwSVBK9o/1oeAJ9JP3r+g==" } }, "is_incremental": false, @@ -825,7 +921,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Connectors.ITunnelCreator.html", - "hash": "RDpXOONOiZYsuJthOVuPBg==" + "hash": "3ONefTiWoghZNB1kUMgIsQ==" } }, "is_incremental": false, @@ -837,7 +933,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Connectors.OrderedMapAreaConnector.html", - "hash": "9GnuqzvIzd7BAaZNF9x9kg==" + "hash": "ct65NOp0Xs8VlO8b8nKq3A==" } }, "is_incremental": false, @@ -849,7 +945,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Connectors.RandomConnectionPointSelector.html", - "hash": "aCR4jWDQtwDA9E+iYyLM+g==" + "hash": "skoNG0agmGjLKrdkc2+eYA==" } }, "is_incremental": false, @@ -861,7 +957,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Connectors.RoomDoorConnector.html", - "hash": "8dkemmww/JenoB6Dr1oJ2Q==" + "hash": "ShESVYyyz+kooum2bcGSQw==" } }, "is_incremental": false, @@ -885,7 +981,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Generators.BasicRoomsGenerator.html", - "hash": "GNmEC0LGUTs4jWn0MSNbtQ==" + "hash": "AG1AN1y1eMLTf3PBE0jJfQ==" } }, "is_incremental": false, @@ -897,7 +993,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Generators.CellularAutomataAreaGenerator.html", - "hash": "IRRdu/AMQKJr68GSkTNmzg==" + "hash": "0zplQPDAJG2gaiq0SmxsrA==" } }, "is_incremental": false, @@ -909,7 +1005,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Generators.MazeGenerator.html", - "hash": "ZTP177FNpaa1k/UoBvnNQw==" + "hash": "5JroexoKjx/CfK8DgiDmBQ==" } }, "is_incremental": false, @@ -921,7 +1017,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.Generators.RoomsGenerator.html", - "hash": "dqVNh6POhFtoFo+Ar1M8GQ==" + "hash": "3m3x0L7vXHjTdlCs1Rj3+Q==" } }, "is_incremental": false, @@ -945,7 +1041,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.IReadOnlyMapArea.html", - "hash": "6BN/38su2yE75bn5irfB6g==" + "hash": "9dpTV9AwX+yV3QYg9n3Euw==" } }, "is_incremental": false, @@ -957,7 +1053,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.MapArea.html", - "hash": "e+bmiicRFlgyuUtR51p1CA==" + "hash": "szodizIfN72Xc94pvJyrwg==" } }, "is_incremental": false, @@ -969,7 +1065,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.MapAreaFinder.html", - "hash": "1ixs/XRXuX+ixAmdmWjVYA==" + "hash": "ylmVXdZ1pmdA94NFyGUfIQ==" } }, "is_incremental": false, @@ -981,7 +1077,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapGeneration.QuickGenerators.html", - "hash": "xGPcwDobnAVEPtxGi+pumA==" + "hash": "qQE/BQeLQHGUvM+wr4zHCg==" } }, "is_incremental": false, @@ -1005,7 +1101,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.ArrayMap-1.html", - "hash": "MMG4Jzeyus3a6sPvTOwfZA==" + "hash": "t1Dl5XNBfkvy58roEkgYcQ==" } }, "is_incremental": false, @@ -1017,7 +1113,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.ArrayMap2D-1.html", - "hash": "AP0jxoihwzjKeYw8dAasFA==" + "hash": "LwXD9vs65soYWucxYAeKKw==" } }, "is_incremental": false, @@ -1029,7 +1125,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.IMapView-1.html", - "hash": "ekECY/xWgwFkRwR1b0tXyg==" + "hash": "cYEiqRrYTzwW7UvMmJYvsw==" } }, "is_incremental": false, @@ -1041,7 +1137,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.IMapViewExtensions.html", - "hash": "FOv8zg8k64WOR+zUe2JMUA==" + "hash": "5NbDtEg/mADygTGth9ODBg==" } }, "is_incremental": false, @@ -1053,7 +1149,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.ISettableMapView-1.html", - "hash": "WOlAfOgKExUzh4txbu7lJg==" + "hash": "vnceuDAQbqULOvh/eNZ5Xw==" } }, "is_incremental": false, @@ -1065,7 +1161,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.LambdaMapView-1.html", - "hash": "XXAD2fF4ZVmM4qCqzNp2fw==" + "hash": "JjPStgaLWmaP5Rk3NAip+A==" } }, "is_incremental": false, @@ -1077,7 +1173,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.LambdaSettableMapView-1.html", - "hash": "LYp3qVX8cNe9bkubiqNz7Q==" + "hash": "jjKwZHE4en0FhQ3/M4wPpA==" } }, "is_incremental": false, @@ -1089,7 +1185,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.LambdaSettableTranslationMap-2.html", - "hash": "BhjdHzMepIi/u3h7HzqBJw==" + "hash": "3QZG2ofLF8Nvy1m96Pwr+A==" } }, "is_incremental": false, @@ -1101,7 +1197,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.LambdaTranslationMap-2.html", - "hash": "IKDEiLy6f2UsxBUk1xlz7w==" + "hash": "KeGD+tFPY1zjm2L9/fTc6g==" } }, "is_incremental": false, @@ -1113,7 +1209,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.SettableTranslationMap-2.html", - "hash": "W6mMMRrY45fhFDQtYZbamw==" + "hash": "CIDkrzphS6QnBIaoAld36Q==" } }, "is_incremental": false, @@ -1125,7 +1221,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.SettableViewport-1.html", - "hash": "CrLIEMnwLV+K5ibfsma3Ng==" + "hash": "/pmxfEF/WHsh+BHj/zfjCw==" } }, "is_incremental": false, @@ -1137,7 +1233,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.TranslationMap-2.html", - "hash": "J0gZT/mtFXrWb44kvSRfAA==" + "hash": "G4JaI0X5RvmxVssxpctF+Q==" } }, "is_incremental": false, @@ -1149,7 +1245,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.UnboundedViewport-1.html", - "hash": "LW5XSwduOznymiKgG77hug==" + "hash": "sauFbSOj/LympeukzTEPxg==" } }, "is_incremental": false, @@ -1161,7 +1257,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MapViews.Viewport-1.html", - "hash": "YPvYCmsvLjPbKrtfUyCDrQ==" + "hash": "nvoUG6gYEzLUalu0duiptA==" } }, "is_incremental": false, @@ -1185,7 +1281,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MathHelpers.html", - "hash": "VFIE9hNVkRBccZlwPOv04w==" + "hash": "gw9mDGAdysYhFN6nVbb2pQ==" } }, "is_incremental": false, @@ -1197,7 +1293,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Messaging.ISubscriber-1.html", - "hash": "JpmYwvWme995WKhXhZpEIQ==" + "hash": "91smKRmjY5AXwWHRSEnQFw==" } }, "is_incremental": false, @@ -1209,7 +1305,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Messaging.MessageBus.html", - "hash": "1RKxRiREZWhFFUgCI6EdZQ==" + "hash": "iTN7LFyL0pwrVOM1VDFkCA==" } }, "is_incremental": false, @@ -1233,7 +1329,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.MultiSpatialMap-1.html", - "hash": "R6JLfGRJ3288L3D4ujCYPw==" + "hash": "d8qyzR0CRBntNwzVjy3tqQ==" } }, "is_incremental": false, @@ -1245,7 +1341,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Pathing.AStar.html", - "hash": "KyeZy9NERHAo2TOEVSoDcQ==" + "hash": "28tBLpXtf7ubZHCgQfD07A==" } }, "is_incremental": false, @@ -1257,7 +1353,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Pathing.FastAStar.html", - "hash": "W0Bz4+/qUFY12kDo3gpXWQ==" + "hash": "/ajzu4gb2cran/bxw/Nu0A==" } }, "is_incremental": false, @@ -1269,7 +1365,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Pathing.FleeMap.html", - "hash": "I+WCxV8ivWmRPdac4yOfvg==" + "hash": "auLqkPLsnjuHpeX6BpowYA==" } }, "is_incremental": false, @@ -1281,7 +1377,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Pathing.GoalMap.html", - "hash": "+Nmjm7H84MeikpBd3BHuSw==" + "hash": "hsTdFJa1ivHEWyiZl6IiOQ==" } }, "is_incremental": false, @@ -1293,7 +1389,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Pathing.GoalMapExtensions.html", - "hash": "y/0ZD/Xwe07Z4/VMiFTuWw==" + "hash": "p23By1wDl+A3f+oBdOmGlA==" } }, "is_incremental": false, @@ -1305,7 +1401,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Pathing.GoalState.html", - "hash": "swoweAQBUteqj+juqLhTsA==" + "hash": "TkE4dmpY5gI2NdxXA1PA8g==" } }, "is_incremental": false, @@ -1317,7 +1413,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Pathing.Path.html", - "hash": "f0X4Wge3bCeukWeYmHNeYg==" + "hash": "lofmGRzd1iFnyYscKxkQcQ==" } }, "is_incremental": false, @@ -1329,7 +1425,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Pathing.WeightedGoalMap.html", - "hash": "WaNBEqn4Kcdp+ZyQR/wEQg==" + "hash": "OKUIHhOlhFRA5SZVMpEcJQ==" } }, "is_incremental": false, @@ -1353,7 +1449,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Radius.Types.html", - "hash": "tJL8fuYFUNbYznIknyevGA==" + "hash": "j70BrdD+6/vZ0Fi/iW6ofA==" } }, "is_incremental": false, @@ -1365,7 +1461,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Radius.html", - "hash": "Jeo20WC2pnz2gT08qef3eA==" + "hash": "frBup4zagVERs30CZQo5BQ==" } }, "is_incremental": false, @@ -1377,7 +1473,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.RadiusAreaProvider.html", - "hash": "/WFCtEU/kdlIIBAt5JGnPw==" + "hash": "EDX3aUU2S95ePN0fkdtSqw==" } }, "is_incremental": false, @@ -1389,7 +1485,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Random.DiscreteConverter-1.html", - "hash": "LN7YOH6mL6gjUdxxmiBmCQ==" + "hash": "hd4YDbhk2kFWvHfvo0S9Fg==" } }, "is_incremental": false, @@ -1401,7 +1497,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Random.DistributionHelpers.html", - "hash": "SmidJ9ZcEFGAlVH9j5uOCQ==" + "hash": "8OWum+3edO/IEm2+V15nlw==" } }, "is_incremental": false, @@ -1413,7 +1509,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Random.KnownSeriesGenerator.html", - "hash": "Wwx6k7Uf4wj3cFcRtsoa1A==" + "hash": "0SiNT/qKpVg+VL/QXUzmuA==" } }, "is_incremental": false, @@ -1425,7 +1521,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Random.MaxRandom.html", - "hash": "NXaqvm6cwpfSLPZvK3gOFg==" + "hash": "ln24ID22NzoM8ISO8ns7YA==" } }, "is_incremental": false, @@ -1437,7 +1533,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Random.MinRandom.html", - "hash": "qRtuQ98y1vSQ5c0ZEbjg1Q==" + "hash": "DQ2B7iZhfidgCxchbMSRfw==" } }, "is_incremental": false, @@ -1449,7 +1545,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Random.SingletonRandom.html", - "hash": "3dTtCBUh/ksjiciH+ytr+Q==" + "hash": "Fcf2H6AUmHPNe1aFktYL4A==" } }, "is_incremental": false, @@ -1473,7 +1569,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Rectangle.html", - "hash": "6tTukwYnFfPqCvvWlcQCiA==" + "hash": "BQhp5C8qpjs+JDevo0IUFw==" } }, "is_incremental": false, @@ -1485,7 +1581,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Reflection.html", - "hash": "+V5nwvnIF8OioPHAZ6fIiQ==" + "hash": "sQXD8TodNbptFz8i24eUcA==" } }, "is_incremental": false, @@ -1497,7 +1593,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.SenseMapping.IReadOnlySenseMap.html", - "hash": "R/f5yJ6GFIkoSdt/1wj59A==" + "hash": "rCBkx7cRrdx9qDJJQXdimA==" } }, "is_incremental": false, @@ -1509,7 +1605,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.SenseMapping.SenseMap.html", - "hash": "sWRqphGU4xL7S1ZnG8Szpg==" + "hash": "tR65pedUcT5UM9dh9BMAvg==" } }, "is_incremental": false, @@ -1521,7 +1617,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.SenseMapping.SenseSource.html", - "hash": "jReA5HnG4wbbraQPR1uBaQ==" + "hash": "KFGVi8HSAyTDwhZX85OVzg==" } }, "is_incremental": false, @@ -1533,7 +1629,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.SenseMapping.SourceType.html", - "hash": "Pz3i2F46gFDQ2I4z8WcQgA==" + "hash": "B9ivoYL3I6Z+Zs/CXFWVQg==" } }, "is_incremental": false, @@ -1557,7 +1653,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.SpatialMap-1.html", - "hash": "LmiCLIQmjOO5f8qgBu/Ujw==" + "hash": "Sqge/7Jb+4PXfqrqyQZ9MA==" } }, "is_incremental": false, @@ -1569,7 +1665,7 @@ "output": { ".html": { "relative_path": "api/GoRogue.Utility.html", - "hash": "jFDdmrdYjSZpX1oYcMLSSw==" + "hash": "JaY18+C6VV5hUtlwwELTEA==" } }, "is_incremental": false, @@ -1596,7 +1692,7 @@ "hash": "4W5EW3IaNlxrILkIwH1Oyg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1605,7 +1701,7 @@ "output": { ".html": { "relative_path": "api/toc.html", - "hash": "72l8f6k8o9t9IZ8y6+sC4g==" + "hash": "SmgG8/2xm40vQOA7/+vqeg==" } }, "is_incremental": false, @@ -1635,7 +1731,7 @@ "hash": "FgCDNvtExZVfNkEIe2r+VQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2183,7 +2279,7 @@ "hash": "xEDNihhQwJDPZvXqPAbsTA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2226,13 +2322,13 @@ "can_incremental": true, "incrementalPhase": "build", "total_file_count": 11, - "skipped_file_count": 10 + "skipped_file_count": 11 }, "ManagedReferenceDocumentProcessor": { "can_incremental": true, "incrementalPhase": "build", - "total_file_count": 132, - "skipped_file_count": 14 + "total_file_count": 140, + "skipped_file_count": 131 } } }, diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml index ce16e5fd..d456392b 100644 --- a/docs/xrefmap.yml +++ b/docs/xrefmap.yml @@ -4493,6 +4493,313 @@ references: fullName.vb: GoRogue.EffectTrigger(Of TriggerArgs).TriggerEffects nameWithType: EffectTrigger.TriggerEffects nameWithType.vb: EffectTrigger(Of TriggerArgs).TriggerEffects +- uid: GoRogue.Factory + name: GoRogue.Factory + href: api/GoRogue.Factory.html + commentId: N:GoRogue.Factory + fullName: GoRogue.Factory + nameWithType: GoRogue.Factory +- uid: GoRogue.Factory.BlueprintConfig + name: BlueprintConfig + href: api/GoRogue.Factory.BlueprintConfig.html + commentId: T:GoRogue.Factory.BlueprintConfig + fullName: GoRogue.Factory.BlueprintConfig + nameWithType: BlueprintConfig +- uid: GoRogue.Factory.BlueprintConfig.Empty + name: Empty + href: api/GoRogue.Factory.BlueprintConfig.html#GoRogue_Factory_BlueprintConfig_Empty + commentId: F:GoRogue.Factory.BlueprintConfig.Empty + fullName: GoRogue.Factory.BlueprintConfig.Empty + nameWithType: BlueprintConfig.Empty +- uid: GoRogue.Factory.Factory`1 + name: Factory + href: api/GoRogue.Factory.Factory-1.html + commentId: T:GoRogue.Factory.Factory`1 + name.vb: Factory(Of TProduced) + fullName: GoRogue.Factory.Factory + fullName.vb: GoRogue.Factory.Factory(Of TProduced) + nameWithType: Factory + nameWithType.vb: Factory(Of TProduced) +- uid: GoRogue.Factory.Factory`1.Create(System.String) + name: Create(String) + href: api/GoRogue.Factory.Factory-1.html#GoRogue_Factory_Factory_1_Create_System_String_ + commentId: M:GoRogue.Factory.Factory`1.Create(System.String) + fullName: GoRogue.Factory.Factory.Create(System.String) + fullName.vb: GoRogue.Factory.Factory(Of TProduced).Create(System.String) + nameWithType: Factory.Create(String) + nameWithType.vb: Factory(Of TProduced).Create(String) +- uid: GoRogue.Factory.Factory`1.Create* + name: Create + href: api/GoRogue.Factory.Factory-1.html#GoRogue_Factory_Factory_1_Create_ + commentId: Overload:GoRogue.Factory.Factory`1.Create + isSpec: "True" + fullName: GoRogue.Factory.Factory.Create + fullName.vb: GoRogue.Factory.Factory(Of TProduced).Create + nameWithType: Factory.Create + nameWithType.vb: Factory(Of TProduced).Create +- uid: GoRogue.Factory.Factory`2 + name: Factory + href: api/GoRogue.Factory.Factory-2.html + commentId: T:GoRogue.Factory.Factory`2 + name.vb: Factory(Of TBlueprintConfig, TProduced) + fullName: GoRogue.Factory.Factory + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced) + nameWithType: Factory + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced) +- uid: GoRogue.Factory.Factory`2.Add(GoRogue.Factory.IBlueprint{`0,`1}) + name: Add(IBlueprint) + href: api/GoRogue.Factory.Factory-2.html#GoRogue_Factory_Factory_2_Add_GoRogue_Factory_IBlueprint__0__1__ + commentId: M:GoRogue.Factory.Factory`2.Add(GoRogue.Factory.IBlueprint{`0,`1}) + name.vb: Add(IBlueprint(Of TBlueprintConfig, TProduced)) + fullName: GoRogue.Factory.Factory.Add(GoRogue.Factory.IBlueprint) + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced).Add(GoRogue.Factory.IBlueprint(Of TBlueprintConfig, TProduced)) + nameWithType: Factory.Add(IBlueprint) + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced).Add(IBlueprint(Of TBlueprintConfig, TProduced)) +- uid: GoRogue.Factory.Factory`2.Add* + name: Add + href: api/GoRogue.Factory.Factory-2.html#GoRogue_Factory_Factory_2_Add_ + commentId: Overload:GoRogue.Factory.Factory`2.Add + isSpec: "True" + fullName: GoRogue.Factory.Factory.Add + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced).Add + nameWithType: Factory.Add + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced).Add +- uid: GoRogue.Factory.Factory`2.BlueprintExists(System.String) + name: BlueprintExists(String) + href: api/GoRogue.Factory.Factory-2.html#GoRogue_Factory_Factory_2_BlueprintExists_System_String_ + commentId: M:GoRogue.Factory.Factory`2.BlueprintExists(System.String) + fullName: GoRogue.Factory.Factory.BlueprintExists(System.String) + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced).BlueprintExists(System.String) + nameWithType: Factory.BlueprintExists(String) + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced).BlueprintExists(String) +- uid: GoRogue.Factory.Factory`2.BlueprintExists* + name: BlueprintExists + href: api/GoRogue.Factory.Factory-2.html#GoRogue_Factory_Factory_2_BlueprintExists_ + commentId: Overload:GoRogue.Factory.Factory`2.BlueprintExists + isSpec: "True" + fullName: GoRogue.Factory.Factory.BlueprintExists + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced).BlueprintExists + nameWithType: Factory.BlueprintExists + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced).BlueprintExists +- uid: GoRogue.Factory.Factory`2.Create(System.String,`0) + name: Create(String, TBlueprintConfig) + href: api/GoRogue.Factory.Factory-2.html#GoRogue_Factory_Factory_2_Create_System_String__0_ + commentId: M:GoRogue.Factory.Factory`2.Create(System.String,`0) + fullName: GoRogue.Factory.Factory.Create(System.String, TBlueprintConfig) + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced).Create(System.String, TBlueprintConfig) + nameWithType: Factory.Create(String, TBlueprintConfig) + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced).Create(String, TBlueprintConfig) +- uid: GoRogue.Factory.Factory`2.Create* + name: Create + href: api/GoRogue.Factory.Factory-2.html#GoRogue_Factory_Factory_2_Create_ + commentId: Overload:GoRogue.Factory.Factory`2.Create + isSpec: "True" + fullName: GoRogue.Factory.Factory.Create + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced).Create + nameWithType: Factory.Create + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced).Create +- uid: GoRogue.Factory.Factory`2.GetBlueprint(System.String) + name: GetBlueprint(String) + href: api/GoRogue.Factory.Factory-2.html#GoRogue_Factory_Factory_2_GetBlueprint_System_String_ + commentId: M:GoRogue.Factory.Factory`2.GetBlueprint(System.String) + fullName: GoRogue.Factory.Factory.GetBlueprint(System.String) + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced).GetBlueprint(System.String) + nameWithType: Factory.GetBlueprint(String) + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced).GetBlueprint(String) +- uid: GoRogue.Factory.Factory`2.GetBlueprint* + name: GetBlueprint + href: api/GoRogue.Factory.Factory-2.html#GoRogue_Factory_Factory_2_GetBlueprint_ + commentId: Overload:GoRogue.Factory.Factory`2.GetBlueprint + isSpec: "True" + fullName: GoRogue.Factory.Factory.GetBlueprint + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced).GetBlueprint + nameWithType: Factory.GetBlueprint + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced).GetBlueprint +- uid: GoRogue.Factory.Factory`2.GetEnumerator + name: GetEnumerator() + href: api/GoRogue.Factory.Factory-2.html#GoRogue_Factory_Factory_2_GetEnumerator + commentId: M:GoRogue.Factory.Factory`2.GetEnumerator + fullName: GoRogue.Factory.Factory.GetEnumerator() + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced).GetEnumerator() + nameWithType: Factory.GetEnumerator() + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced).GetEnumerator() +- uid: GoRogue.Factory.Factory`2.GetEnumerator* + name: GetEnumerator + href: api/GoRogue.Factory.Factory-2.html#GoRogue_Factory_Factory_2_GetEnumerator_ + commentId: Overload:GoRogue.Factory.Factory`2.GetEnumerator + isSpec: "True" + fullName: GoRogue.Factory.Factory.GetEnumerator + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced).GetEnumerator + nameWithType: Factory.GetEnumerator + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced).GetEnumerator +- uid: GoRogue.Factory.Factory`2.System#Collections#IEnumerable#GetEnumerator + name: IEnumerable.GetEnumerator() + href: api/GoRogue.Factory.Factory-2.html#GoRogue_Factory_Factory_2_System_Collections_IEnumerable_GetEnumerator + commentId: M:GoRogue.Factory.Factory`2.System#Collections#IEnumerable#GetEnumerator + name.vb: System.Collections.IEnumerable.GetEnumerator() + fullName: GoRogue.Factory.Factory.System.Collections.IEnumerable.GetEnumerator() + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced).System.Collections.IEnumerable.GetEnumerator() + nameWithType: Factory.IEnumerable.GetEnumerator() + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced).System.Collections.IEnumerable.GetEnumerator() +- uid: GoRogue.Factory.Factory`2.System#Collections#IEnumerable#GetEnumerator* + name: IEnumerable.GetEnumerator + href: api/GoRogue.Factory.Factory-2.html#GoRogue_Factory_Factory_2_System_Collections_IEnumerable_GetEnumerator_ + commentId: Overload:GoRogue.Factory.Factory`2.System#Collections#IEnumerable#GetEnumerator + isSpec: "True" + name.vb: System.Collections.IEnumerable.GetEnumerator + fullName: GoRogue.Factory.Factory.System.Collections.IEnumerable.GetEnumerator + fullName.vb: GoRogue.Factory.Factory(Of TBlueprintConfig, TProduced).System.Collections.IEnumerable.GetEnumerator + nameWithType: Factory.IEnumerable.GetEnumerator + nameWithType.vb: Factory(Of TBlueprintConfig, TProduced).System.Collections.IEnumerable.GetEnumerator +- uid: GoRogue.Factory.IBlueprint`2 + name: IBlueprint + href: api/GoRogue.Factory.IBlueprint-2.html + commentId: T:GoRogue.Factory.IBlueprint`2 + name.vb: IBlueprint(Of TBlueprintConfig, TProduced) + fullName: GoRogue.Factory.IBlueprint + fullName.vb: GoRogue.Factory.IBlueprint(Of TBlueprintConfig, TProduced) + nameWithType: IBlueprint + nameWithType.vb: IBlueprint(Of TBlueprintConfig, TProduced) +- uid: GoRogue.Factory.IBlueprint`2.Create(`0) + name: Create(TBlueprintConfig) + href: api/GoRogue.Factory.IBlueprint-2.html#GoRogue_Factory_IBlueprint_2_Create__0_ + commentId: M:GoRogue.Factory.IBlueprint`2.Create(`0) + fullName: GoRogue.Factory.IBlueprint.Create(TBlueprintConfig) + fullName.vb: GoRogue.Factory.IBlueprint(Of TBlueprintConfig, TProduced).Create(TBlueprintConfig) + nameWithType: IBlueprint.Create(TBlueprintConfig) + nameWithType.vb: IBlueprint(Of TBlueprintConfig, TProduced).Create(TBlueprintConfig) +- uid: GoRogue.Factory.IBlueprint`2.Create* + name: Create + href: api/GoRogue.Factory.IBlueprint-2.html#GoRogue_Factory_IBlueprint_2_Create_ + commentId: Overload:GoRogue.Factory.IBlueprint`2.Create + isSpec: "True" + fullName: GoRogue.Factory.IBlueprint.Create + fullName.vb: GoRogue.Factory.IBlueprint(Of TBlueprintConfig, TProduced).Create + nameWithType: IBlueprint.Create + nameWithType.vb: IBlueprint(Of TBlueprintConfig, TProduced).Create +- uid: GoRogue.Factory.IBlueprint`2.Id + name: Id + href: api/GoRogue.Factory.IBlueprint-2.html#GoRogue_Factory_IBlueprint_2_Id + commentId: P:GoRogue.Factory.IBlueprint`2.Id + fullName: GoRogue.Factory.IBlueprint.Id + fullName.vb: GoRogue.Factory.IBlueprint(Of TBlueprintConfig, TProduced).Id + nameWithType: IBlueprint.Id + nameWithType.vb: IBlueprint(Of TBlueprintConfig, TProduced).Id +- uid: GoRogue.Factory.IBlueprint`2.Id* + name: Id + href: api/GoRogue.Factory.IBlueprint-2.html#GoRogue_Factory_IBlueprint_2_Id_ + commentId: Overload:GoRogue.Factory.IBlueprint`2.Id + isSpec: "True" + fullName: GoRogue.Factory.IBlueprint.Id + fullName.vb: GoRogue.Factory.IBlueprint(Of TBlueprintConfig, TProduced).Id + nameWithType: IBlueprint.Id + nameWithType.vb: IBlueprint(Of TBlueprintConfig, TProduced).Id +- uid: GoRogue.Factory.IFactoryObject + name: IFactoryObject + href: api/GoRogue.Factory.IFactoryObject.html + commentId: T:GoRogue.Factory.IFactoryObject + fullName: GoRogue.Factory.IFactoryObject + nameWithType: IFactoryObject +- uid: GoRogue.Factory.IFactoryObject.DefinitionId + name: DefinitionId + href: api/GoRogue.Factory.IFactoryObject.html#GoRogue_Factory_IFactoryObject_DefinitionId + commentId: P:GoRogue.Factory.IFactoryObject.DefinitionId + fullName: GoRogue.Factory.IFactoryObject.DefinitionId + nameWithType: IFactoryObject.DefinitionId +- uid: GoRogue.Factory.IFactoryObject.DefinitionId* + name: DefinitionId + href: api/GoRogue.Factory.IFactoryObject.html#GoRogue_Factory_IFactoryObject_DefinitionId_ + commentId: Overload:GoRogue.Factory.IFactoryObject.DefinitionId + isSpec: "True" + fullName: GoRogue.Factory.IFactoryObject.DefinitionId + nameWithType: IFactoryObject.DefinitionId +- uid: GoRogue.Factory.ItemNotDefinedException + name: ItemNotDefinedException + href: api/GoRogue.Factory.ItemNotDefinedException.html + commentId: T:GoRogue.Factory.ItemNotDefinedException + fullName: GoRogue.Factory.ItemNotDefinedException + nameWithType: ItemNotDefinedException +- uid: GoRogue.Factory.ItemNotDefinedException.#ctor(System.String) + name: ItemNotDefinedException(String) + href: api/GoRogue.Factory.ItemNotDefinedException.html#GoRogue_Factory_ItemNotDefinedException__ctor_System_String_ + commentId: M:GoRogue.Factory.ItemNotDefinedException.#ctor(System.String) + fullName: GoRogue.Factory.ItemNotDefinedException.ItemNotDefinedException(System.String) + nameWithType: ItemNotDefinedException.ItemNotDefinedException(String) +- uid: GoRogue.Factory.ItemNotDefinedException.#ctor* + name: ItemNotDefinedException + href: api/GoRogue.Factory.ItemNotDefinedException.html#GoRogue_Factory_ItemNotDefinedException__ctor_ + commentId: Overload:GoRogue.Factory.ItemNotDefinedException.#ctor + isSpec: "True" + fullName: GoRogue.Factory.ItemNotDefinedException.ItemNotDefinedException + nameWithType: ItemNotDefinedException.ItemNotDefinedException +- uid: GoRogue.Factory.SimpleBlueprint`1 + name: SimpleBlueprint + href: api/GoRogue.Factory.SimpleBlueprint-1.html + commentId: T:GoRogue.Factory.SimpleBlueprint`1 + name.vb: SimpleBlueprint(Of TProduced) + fullName: GoRogue.Factory.SimpleBlueprint + fullName.vb: GoRogue.Factory.SimpleBlueprint(Of TProduced) + nameWithType: SimpleBlueprint + nameWithType.vb: SimpleBlueprint(Of TProduced) +- uid: GoRogue.Factory.SimpleBlueprint`1.#ctor(System.String) + name: SimpleBlueprint(String) + href: api/GoRogue.Factory.SimpleBlueprint-1.html#GoRogue_Factory_SimpleBlueprint_1__ctor_System_String_ + commentId: M:GoRogue.Factory.SimpleBlueprint`1.#ctor(System.String) + fullName: GoRogue.Factory.SimpleBlueprint.SimpleBlueprint(System.String) + fullName.vb: GoRogue.Factory.SimpleBlueprint(Of TProduced).SimpleBlueprint(System.String) + nameWithType: SimpleBlueprint.SimpleBlueprint(String) + nameWithType.vb: SimpleBlueprint(Of TProduced).SimpleBlueprint(String) +- uid: GoRogue.Factory.SimpleBlueprint`1.#ctor* + name: SimpleBlueprint + href: api/GoRogue.Factory.SimpleBlueprint-1.html#GoRogue_Factory_SimpleBlueprint_1__ctor_ + commentId: Overload:GoRogue.Factory.SimpleBlueprint`1.#ctor + isSpec: "True" + fullName: GoRogue.Factory.SimpleBlueprint.SimpleBlueprint + fullName.vb: GoRogue.Factory.SimpleBlueprint(Of TProduced).SimpleBlueprint + nameWithType: SimpleBlueprint.SimpleBlueprint + nameWithType.vb: SimpleBlueprint(Of TProduced).SimpleBlueprint +- uid: GoRogue.Factory.SimpleBlueprint`1.Create + name: Create() + href: api/GoRogue.Factory.SimpleBlueprint-1.html#GoRogue_Factory_SimpleBlueprint_1_Create + commentId: M:GoRogue.Factory.SimpleBlueprint`1.Create + fullName: GoRogue.Factory.SimpleBlueprint.Create() + fullName.vb: GoRogue.Factory.SimpleBlueprint(Of TProduced).Create() + nameWithType: SimpleBlueprint.Create() + nameWithType.vb: SimpleBlueprint(Of TProduced).Create() +- uid: GoRogue.Factory.SimpleBlueprint`1.Create(GoRogue.Factory.BlueprintConfig) + name: Create(BlueprintConfig) + href: api/GoRogue.Factory.SimpleBlueprint-1.html#GoRogue_Factory_SimpleBlueprint_1_Create_GoRogue_Factory_BlueprintConfig_ + commentId: M:GoRogue.Factory.SimpleBlueprint`1.Create(GoRogue.Factory.BlueprintConfig) + fullName: GoRogue.Factory.SimpleBlueprint.Create(GoRogue.Factory.BlueprintConfig) + fullName.vb: GoRogue.Factory.SimpleBlueprint(Of TProduced).Create(GoRogue.Factory.BlueprintConfig) + nameWithType: SimpleBlueprint.Create(BlueprintConfig) + nameWithType.vb: SimpleBlueprint(Of TProduced).Create(BlueprintConfig) +- uid: GoRogue.Factory.SimpleBlueprint`1.Create* + name: Create + href: api/GoRogue.Factory.SimpleBlueprint-1.html#GoRogue_Factory_SimpleBlueprint_1_Create_ + commentId: Overload:GoRogue.Factory.SimpleBlueprint`1.Create + isSpec: "True" + fullName: GoRogue.Factory.SimpleBlueprint.Create + fullName.vb: GoRogue.Factory.SimpleBlueprint(Of TProduced).Create + nameWithType: SimpleBlueprint.Create + nameWithType.vb: SimpleBlueprint(Of TProduced).Create +- uid: GoRogue.Factory.SimpleBlueprint`1.Id + name: Id + href: api/GoRogue.Factory.SimpleBlueprint-1.html#GoRogue_Factory_SimpleBlueprint_1_Id + commentId: P:GoRogue.Factory.SimpleBlueprint`1.Id + fullName: GoRogue.Factory.SimpleBlueprint.Id + fullName.vb: GoRogue.Factory.SimpleBlueprint(Of TProduced).Id + nameWithType: SimpleBlueprint.Id + nameWithType.vb: SimpleBlueprint(Of TProduced).Id +- uid: GoRogue.Factory.SimpleBlueprint`1.Id* + name: Id + href: api/GoRogue.Factory.SimpleBlueprint-1.html#GoRogue_Factory_SimpleBlueprint_1_Id_ + commentId: Overload:GoRogue.Factory.SimpleBlueprint`1.Id + isSpec: "True" + fullName: GoRogue.Factory.SimpleBlueprint.Id + fullName.vb: GoRogue.Factory.SimpleBlueprint(Of TProduced).Id + nameWithType: SimpleBlueprint.Id + nameWithType.vb: SimpleBlueprint(Of TProduced).Id - uid: GoRogue.FOV name: FOV href: api/GoRogue.FOV.html